-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.py
34 lines (31 loc) · 1.3 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import versioneer
setup(name='neuropredict',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Neuroimaging Predictive Analysis',
long_description='Neuroimaging Predictive Analysis; neuropredict',
author='Pradeep Reddy Raamana',
author_email='[email protected]',
url='https://github.com/raamana/neuropredict',
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), # ['neuropredict'],
install_requires=['numpy', 'scikit-learn', 'pyradigm', 'nibabel', 'scipy', 'matplotlib', 'setuptools'],
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
entry_points={
"console_scripts": [
"neuropredict=neuropredict.__main__:main",
]
}
)