-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 847 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 847 Bytes
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
from setuptools import setup, find_packages
# with open("README.md", "r") as fh:
# long_description = fh.read()
setup(
name='NeuroPreprocessing',
version='0.1.0',
long_description='A Python Package for processing fMRI',
long_description_content_type='text/markdown',
author='Anwar Said',
author_email='anwar.said@vanderbilt.edu',
packages=find_packages(),
install_requires=[
# List any dependencies your package requires
'numpy',
'nilearn',
'sphinx_rtd_theme'
],
keywords=['python', 'neuroimaging'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
],
)