-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.03 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
import sys
import setuptools
LONG_DESC = open("README.md").read()
DOWNLOAD = "https://github.com/lulivi/deep-g-prop/archive/v1.0.0.zip"
REQUIREMENTS = open("requirements/prod.txt").read().splitlines()
setuptools.setup(
name="DeepGProp",
version="1.0.0",
author="Luis Liñán",
author_email="luislivilla@gmail.com",
description="Train Multilayer Perceptrons with Genetic Algorithms.",
long_description_content_type="text/markdown",
long_description=LONG_DESC,
license="GPLv3",
url="https://github.com/lulivi/deep-g-prop",
download_url=DOWNLOAD,
classifiers=[
"Environment :: X11 Applications",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
packages=["src"],
entry_points={"console_scripts": ["dgp=src.deep_g_prop:cli"]},
python_requires=">=3.6",
install_requires=REQUIREMENTS,
test_suite="tests",
)