-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
28 lines (27 loc) · 883 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='NeuroGraph',
version='3.0.0',
long_description='A Python package for graph-based neuroimaging benchmarks and tools',
long_description_content_type='text/markdown',
author='Anwar Said',
author_email='<[email protected]>',
packages=find_packages(),
install_requires=[
# List any dependencies your package requires
'boto3',
'nilearn',
'nibabel',
'networkx',
'pandas',
'sphinx_rtd_theme'
],
keywords = ['python','neuroimaging','graph machine learning'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
],
)