-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (24 loc) · 889 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='mirror_symmetry',
version='1.1.3',
description='Tools to detect mirror symmetry in 3D image data.',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: 3D image Processing :: Symmetry'],
keywords='mirror symmetry',
url='http://github.com/',
author='David Drobny',
author_email='[email protected]',
license='MIT',
packages=['mirror_symmetry'],
install_requires=['numpy>=1.15.0', 'nibabel'],
entry_points={
'console_scripts': ['mirror_symmetry_tool = '
'mirror_symmetry.command:process']},
zip_safe=False)