-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
55 lines (50 loc) · 1.85 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup
import versioneer
from pynets.__about__ import __version__
cmdclass = versioneer.get_cmdclass()
with open('README.rst') as readme_file:
readme = readme_file.read()
readme_file.close()
with open('requirements.txt') as f:
requirements = [r for r in f.read().splitlines() if 'git+' not in r]
f.close()
setup(
name='pynets',
version=__version__,
cmdclass=cmdclass,
description="A Reproducible Workflow for Structural and Functional "
"Connectome Ensemble Learning",
author="Derek Pisner",
author_email='[email protected]',
url='https://github.com/dPys/pynets',
packages=['pynets'],
entry_points={
'console_scripts': [
'pynets=pynets.cli.pynets_run:main',
'pynets_cloud=pynets.cli.pynets_cloud:main',
'pynets_bids=pynets.cli.pynets_bids:main',
'pynets_benchmark=pynets.cli.pynets_benchmark:main',
'pynets_predict=pynets.cli.pynets_predict:main',
'pynets_config=pynets.cli.pynets_config:main'
]
},
include_package_data=True,
install_requires=requirements,
dependency_links=['git+https://github.com/dPys/nilearn.git@enh/parc_conn#egg=nilearn',
'git+https://github.com/dPys/deepbrain.git@master#egg=deepbrain'],
license="GNU Affero General Public License v3 or later (AGPLv3+)",
zip_safe=False,
keywords='pynets',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
test_suite='tests'
)