-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (42 loc) · 1.33 KB
/
setup.py
File metadata and controls
45 lines (42 loc) · 1.33 KB
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
44
45
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(name='Detect',
version='0.0.7',
description='Anomaly detection framework for Tractometry',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/chamberm/Detect',
author='Maxime Chamberland',
author_email='m.chamberland@tue.nl',
python_requires='>=3.7',
license='Apache 2.0',
packages=find_packages(),
install_requires=[
'future',
'numpy==1.19.2',
'nibabel>=2.3.0',
'matplotlib>=2.0',
'scikit-learn==0.22',
'scipy>=0.19',
'dipy>=1.0.0',
'streamlit>=0.57.2',
'pandas==1.0.0',
'xlrd==1.2.0',
'seaborn==0.9.0',
'tensorflow==2.4.1',
'keras==2.4.3',
'openpyxl'
],
zip_safe=False,
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Operating System :: Unix',
'Operating System :: MacOS'
],
scripts=[
'bin/Detect', 'bin/Inspect'
],
)