-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (38 loc) · 1.61 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
from setuptools import setup, find_packages
RECTIPY_TEAM = "Richard Gast"
with open("requirements.txt", "r", encoding="utf8") as fh:
REQUIREMENTS = fh.read()
INSTALL_REQUIREMENTS = REQUIREMENTS
CLASSIFIERS = ["Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
EXTRAS = {"dev": ["pytest", "bump2version"]}
with open("VERSION", "r", encoding="utf8") as fh:
VERSION = fh.read().strip()
with open("README.md", "r", encoding="utf8") as fh:
DESCRIPTION = fh.read()
setup(name='rectipy',
version=VERSION,
description='Recurrent neural network training in Python',
long_description=DESCRIPTION,
long_description_content_type='text/markdown',
author=RECTIPY_TEAM,
author_email='richard.gast@northwestern.edu',
license='GPL v3',
packages=find_packages(),
zip_safe=False,
python_requires='>=3.6',
install_requires=INSTALL_REQUIREMENTS,
extras_require=EXTRAS,
classifiers=CLASSIFIERS,
include_package_data=True # include additional non-python files specified in MANIFEST.in
)