This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
62 lines (56 loc) · 2.34 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
__authors__ = ["Pierre-Alexandre Fonta", "Christian O'Reilly"]
__maintainer__ = "Pierre-Alexandre Fonta"
import os
from setuptools import setup
NEUROCURATOR_VERSION = "0.4.5"
NAT_MINIMUM_VERSION = "0.4.4"
HERE = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file.
# Convert to rst with: pandoc --from=markdown --to=rst README.md -o README.rst.
with open(os.path.join(HERE, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="neurocurator",
version=NEUROCURATOR_VERSION,
description="Application to perform curation of neuroscientific literature.",
long_description=long_description,
keywords="neuroscience annotation curation literature modeling parameters",
url="https://github.com/BlueBrain/neurocurator",
author="Christian O'Reilly, Pierre-Alexandre Fonta",
author_email="[email protected], [email protected]",
# NB: 'If maintainer is provided, distutils lists it as the author in PKG-INFO'.
# https://docs.python.org/3/distutils/setupscript.html#meta-data
# maintainer="Pierre-Alexandre Fonta",
# maintainer_email="[email protected]",
license="GPLv3",
packages=["neurocurator"],
python_requires=">=3.5", # Packages NAT and pandas requires Python 3.5+.
install_requires=[
"nat>=" + NAT_MINIMUM_VERSION,
"PyQt5",
"numpy",
"pandas",
"wand",
],
data_files=[("", ["LICENSE.txt"])],
entry_points={
# NB: gui_scripts: on Windows no console is attached (no stdout/stderr).
"console_scripts": ["neurocurator = neurocurator.__main__:main"],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Environment :: X11 Applications :: Qt",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"License :: Free for non-commercial use",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Natural Language :: English",
]
)