|
1 | 1 | from setuptools import setup, find_packages |
2 | 2 |
|
| 3 | + |
3 | 4 | def readme(): |
4 | | - """ |
5 | | - This function just return the content of README.md |
6 | | - """ |
7 | | - with open('README.md') as f: |
8 | | - return f.read() |
| 5 | + """ |
| 6 | + This function just return the content of README.md |
| 7 | + """ |
| 8 | + with open('README.md') as f: |
| 9 | + return f.read() |
| 10 | + |
9 | 11 |
|
10 | | -setup(name='pygem', |
11 | | - version='0.2', |
12 | | - description='Tools to apply FFD.', |
13 | | - long_description=readme(), |
14 | | - classifiers=[ |
15 | | - 'Development Status :: 4 - Beta', |
16 | | - 'License :: OSI Approved :: MIT License', |
17 | | - 'Programming Language :: Python :: 2.7', |
18 | | - 'Intended Audience :: Science/Research', |
19 | | - 'Topic :: Scientific/Engineering :: Mathematics' |
20 | | - ], |
21 | | - keywords='dimension_reduction mathematics ffd morphing iges stl vtk openfoam', |
22 | | - url='https://github.com/mathLab/PyGeM', |
23 | | - author='Marco Tezzele, Nicola Demo', |
24 | | - |
25 | | - license='MIT', |
26 | | - packages=find_packages(), |
27 | | - install_requires=[ |
28 | | - 'numpy', |
29 | | - 'numpy-stl', |
30 | | - 'scipy', |
31 | | - 'matplotlib', |
32 | | - 'enum34', |
33 | | - 'Sphinx==1.4', |
34 | | - 'sphinx_rtd_theme' |
35 | | - ], |
36 | | - test_suite='nose.collector', |
37 | | - tests_require=['nose'], |
38 | | - include_package_data=True, |
39 | | - zip_safe=False) |
| 12 | +setup( |
| 13 | + name='pygem', |
| 14 | + version='0.2', |
| 15 | + description='Tools for gemetrical morphing.', |
| 16 | + long_description=readme(), |
| 17 | + classifiers=[ |
| 18 | + 'Development Status :: 4 - Beta', |
| 19 | + 'License :: OSI Approved :: MIT License', |
| 20 | + 'Programming Language :: Python :: 2.7', |
| 21 | + 'Intended Audience :: Science/Research', |
| 22 | + 'Topic :: Scientific/Engineering :: Mathematics' |
| 23 | + ], |
| 24 | + keywords='dimension_reduction mathematics ffd morphing iges stl vtk openfoam', |
| 25 | + url='https://github.com/mathLab/PyGeM', |
| 26 | + author='Marco Tezzele, Nicola Demo', |
| 27 | + |
| 28 | + license='MIT', |
| 29 | + packages=find_packages(), |
| 30 | + install_requires=[ |
| 31 | + 'numpy', 'numpy-stl', 'scipy', 'matplotlib', 'vtk', 'enum34', |
| 32 | + 'Sphinx==1.4', 'sphinx_rtd_theme' |
| 33 | + ], |
| 34 | + test_suite='nose.collector', |
| 35 | + tests_require=['nose'], |
| 36 | + include_package_data=True, |
| 37 | + zip_safe=False) |
0 commit comments