setup.py 632 B

123456789101112131415161718192021222324252627
  1. #!/usr/bin/env python
  2. from setuptools import setup, find_packages
  3. import os
  4. # here = os.path.abspath(os.path.dirname(__file__))
  5. setup(name='hdpg1d',
  6. version='2.0',
  7. description='An 1D finite element solver using hybridizable discontinuous\
  8. Petrov-Galerkin method',
  9. author='Keyi Ni',
  10. author_email='[email protected]',
  11. url='test',
  12. license='MIT',
  13. packages=find_packages(),
  14. entry_points={
  15. 'console_scripts': [
  16. 'PGsolve = hdpg1d.cmd:main'
  17. ],
  18. },
  19. requires=[
  20. 'numpy',
  21. 'matplotlib',
  22. 'scipy'
  23. ],)