-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (36 loc) · 1.05 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
from setuptools import setup, find_packages
setup(name='basecore',
version='1.0',
description='Repository with several utilities',
url='https://github.com/sforazz/basecore',
python_requires='>=3.5',
author='Francesco Sforazzini',
author_email='f.sforazzini@dkfz.de',
license='Apache 2.0',
zip_safe=False,
install_requires=[
'bz2file==0.98',
'cycler==0.10.0',
'kiwisolver==1.0.1',
'matplotlib==3.0.2',
'nibabel==2.3.3',
'numpy==1.16.0',
'pandas==0.24.0',
'pydicom==1.2.2',
'pynrrd==0.3.6',
'pyparsing==2.3.1',
'python-dateutil==2.7.5',
'pytz==2018.9',
'six==1.12.0',
'nipype==1.2.0',
'xnat==0.3.21',
'pyxnat==1.2.1.0.post3'
],
packages=find_packages(exclude=['*.tests', '*.tests.*', 'tests.*', 'tests']),
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Operating System :: Unix'
]
)