-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 917 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
30
31
32
33
34
"""
@author: pritesh-mehta
"""
from setuptools import setup, find_packages
setup(name='connected_component',
version='1.0',
description='Connected component utilities',
url='https://github.com/pritesh-mehta/connected_component',
python_requires='>=3.6',
author='Pritesh Mehta',
author_email='[email protected]',
license='Apache 2.0',
zip_safe=False,
install_requires=[
'numpy',
'scipy',
'pathlib',
'argparse',
'nibabel',
],
entry_points={
'console_scripts': [
'connected_component=connected_component.connected_component:process',
],
},
packages=find_packages(include=['connected_component']),
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
]
)