-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
46 lines (42 loc) · 1.91 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
import os
from setuptools import setup
# get __version__ variable
here = os.path.abspath(os.path.dirname(__file__))
exec(open(os.path.join(here, 'minerva', '_version.py')).read())
setup(name="minerva-ui",
version=__version__,
description="An out-of-the-box GUI tool for offline deep reinforcement learning",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/takuseno/minerva",
author="Takuma Seno",
author_email="takuma.seno@gmail.com",
license="MIT License",
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X"],
install_requires=["d3rlpy==0.90",
"Flask",
"flask_sqlalchemy",
"flask-marshmallow",
"Flask-Migrate",
"SQLAlchemy",
"marshmallow-sqlalchemy",
"click",
"Pillow"],
packages=["minerva",
"minerva.controllers",
"minerva.models"],
package_data={'minerva': ['dist/*']},
python_requires=">=3.5.0",
include_package_data=True,
entry_points={'console_scripts': ['minerva=minerva.index:cli']})