| 1234567891011121314151617181920212223242526272829 |
- #!/usr/bin/env python
- from distutils.core import setup
- import codecs
- import os
- here = os.path.abspath(os.path.dirname(__file__))
- # def read(*parts):
- # # intentionally *not* adding an encoding option to open
- # return codecs.open(os.path.join(here, *parts), 'r').read()
- # long_description = read('README.rst')
- setup(name='hdpg1d',
- version='1.1',
- description='An 1D finite element solver using hybridizable discontinuous\
- Petrov-Galerkin method',
- author='Keyi Ni',
- author_email='[email protected]',
- url='test',
- license='MIT',
- packages=['hdpg1d'],
- requires=[
- 'numpy',
- 'matplotlib',
- 'scipy'
- ],)
|