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