-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
55 lines (50 loc) · 1.73 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
44
45
46
47
48
49
50
51
52
53
54
55
from glob import glob
import os
from setuptools import setup
with open('README.md', 'r') as f:
long_description = f.read()
# Read the version from the main package.
with open('react/__init__.py') as f:
for line in f:
if '__version__' in line:
_, version, _ = line.split("'")
break
# Read the requirements from the file
requirements = [
"numpy>=1.15",
"scipy>=0.19.1",
"nibabel>=3.0.0",
"scikit-learn>=0.22"
]
setup(
author='Ottavia Dipasquale, Matteo Frigo',
author_email='ottavia.dipasquale@kcl.ac.uk',
license='MIT',
classifiers=[
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: Image Processing',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
],
description='A Python package that implements REACT: Receptor-Enriched '
'Analysis of Functional Connectivity by Targets',
long_description=long_description,
long_description_content_type='text/markdown',
include_package_data=True,
install_requires=requirements,
name='react-fmri',
packages=['react'],
python_requires='>=3',
scripts=glob('script/*'),
url='https://github.com/ottaviadipasquale/react-fmri/',
version=version,
project_urls={
'Source': 'https://github.com/ottaviadipasquale/react-fmri',
'Bug Reports': 'https://github.com/ottaviadipasquale/react-fmri/issues',
'Documentation': 'https://github.com/ottaviadipasquale/react-fmri/'
'blob/main/README.md',
},
)