setup.py 701 B

1234567891011121314151617181920212223242526272829
  1. #!/usr/bin/env python
  2. from distutils.core import setup
  3. import codecs
  4. import os
  5. here = os.path.abspath(os.path.dirname(__file__))
  6. # def read(*parts):
  7. # # intentionally *not* adding an encoding option to open
  8. # return codecs.open(os.path.join(here, *parts), 'r').read()
  9. # long_description = read('README.rst')
  10. setup(name='hdpg1d',
  11. version='1.1',
  12. description='An 1D finite element solver using hybridizable discontinuous\
  13. Petrov-Galerkin method',
  14. author='Keyi Ni',
  15. author_email='[email protected]',
  16. url='test',
  17. license='MIT',
  18. packages=['hdpg1d'],
  19. requires=[
  20. 'numpy',
  21. 'matplotlib',
  22. 'scipy'
  23. ],)