-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (25 loc) · 869 Bytes
/
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
from setuptools import setup
def readme():
with open('README.MD') as f:
return f.read()
setup(name='pyKneeSPM',
version='0.0.1',
description='SPM style analysis for bone meshes',
long_description=readme(),
url='',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
# 'Programming Language :: Python :: 3.4',
# 'Programming Language :: Python :: 3.5',
# 'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
],
keywords='spm, mesh, statistics, polydata',
author='Anthony Gatti',
author_email='[email protected]',
license='MIT',
packages=['pyKneeSPM'],
package_data={'pyKneeSPM': ['data/*.vtk']},
install_requires=['vtk', 'numpy', 'scipy'],
zip_safe=False)