-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathsetup.py
43 lines (40 loc) · 1.13 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
38
39
40
41
42
43
#!/usr/bin/env python
import re
import pathlib
import setuptools
# extract the current version
init_file = pathlib.Path(__file__).parent.resolve().joinpath('neurite/__init__.py')
init_text = open(init_file, 'rt').read()
pattern = r"^__version__ = ['\"]([^'\"]*)['\"]"
match = re.search(pattern, init_text, re.M)
if not match:
raise RuntimeError(f'Unable to find __version__ in {init_file}')
version = match.group(1)
# run setup
setuptools.setup(
name='neurite',
version=version,
license='MIT',
description='Neural Networks Toolbox for Medical Imaging',
url='https://github.com/adalca/neurite',
keywords=['imaging', 'cnn'],
packages=setuptools.find_packages(),
python_requires='>=3.6',
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
install_requires=[
'packaging',
'six',
'numpy>=1.17',
'scipy',
'tqdm',
'matplotlib',
'scikit-learn',
'nibabel',
'pystrum>=0.2',
]
)