forked from mnislamraju/NeuroChaT
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
78 lines (64 loc) · 1.98 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
DESCRIPTION = "NeuroChaT: Neuron Characterisation Toolbox"
LONG_DESCRIPTION = read("README.md")
LONG_DESCRIPTION_CONTENT_TYPE = "text/markdown"
DISTNAME = 'neurochat'
MAINTAINER = 'Md Nurul Islam and Sean Martin'
MAINTAINER_EMAIL = '[email protected]'
URL = 'https://github.com/seankmartin/NeuroChaT'
DOWNLOAD_URL = 'https://github.com/seankmartin/NeuroChaT/archive/v1.2.0.tar.gz'
VERSION = '1.2.0'
INSTALL_REQUIRES = [
'PyPDF2 >= 1.26.0',
'PyQt5 >= 5.11.3',
'h5py >= 2.9.0',
'matplotlib >= 3.0.2',
'numpy >= 1.15.0',
'pandas >= 0.24.0',
'scipy >= 1.2.0',
'scikit_learn >= 0.20.2',
'PyYAML >= 4.2b1',
'xlrd',
'openpyxl'
]
PACKAGES = [
'neurochat',
'neurochat_gui'
]
CLASSIFIERS = [
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
]
ENTRY_POINTS = {
"console_scripts": [
"neurochat = neurochat_gui.neurochat_ui:main"
]
}
if __name__ == "__main__":
setup(name=DISTNAME,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESCRIPTION_CONTENT_TYPE,
url=URL,
version=VERSION,
download_url=DOWNLOAD_URL,
install_requires=INSTALL_REQUIRES,
include_package_data=True,
packages=PACKAGES,
classifiers=CLASSIFIERS,
entry_points=ENTRY_POINTS,
)