-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.49 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.49 KB
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
from setuptools import setup, find_packages
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="reinforceui-studio",
version="1.3.2",
author="David Valencia",
author_email="support@reinforceui-studio.com",
description="A GUI to simplify the configuration and monitoring of RL training processes.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/dvalenciar/ReinforceUI-Studio",
license="MIT",
packages=find_packages(),
install_requires=requirements,
entry_points={
"console_scripts": [
"reinforceui-studio=reinforceui_studio.main:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Environment :: X11 Applications :: Qt",
],
keywords="reinforcement-learning machine-learning deep-learning GUI",
project_urls={
"Documentation": "https://docs.reinforceui-studio.com",
"Repository": "https://github.com/dvalenciar/ReinforceUI-Studio",
"Tracker": "https://github.com/dvalenciar/ReinforceUI-Studio/issues",
},
python_requires=">=3.10",
include_package_data=True,
)