forked from mathLab/PyGeM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.03 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.03 KB
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
38
39
from setuptools import setup
def readme():
"""
This function just return the content of README.md
"""
with open('README.md') as f:
return f.read()
setup(name='pygem',
version='0.2',
description='Tools to apply FFD.',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'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='Filippo Salmoiraghi, Marco Tezzele',
author_email='filippo.salmoiraghi@gmail.com, marcotez@gmail.com',
license='MIT',
packages=['pygem'],
install_requires=[
'numpy',
'numpy-stl',
'scipy',
'matplotlib',
'enum34',
'Sphinx>=1.4',
'sphinx_rtd_theme'
],
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
zip_safe=False)