-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
64 lines (60 loc) · 1.99 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
63
64
import os
from pathlib import Path
import setuptools
extras = {
"core": [],
"tests": ["pytest", "pytest-mock", "testresources"],
"stable-baselines": [
"stable-baselines~=2.10.2",
"gym<=0.21.0",
"protobuf==3.20.1",
"pyyaml",
],
"stable-baselines3": ["stable-baselines3[extra]~=2.1.0", "pyyaml"],
"ray-rllib": ["ray[rllib]~=2.7.0", "torch", "pyyaml"],
"sheeprl": [
"sheeprl==0.5.5",
"importlib-resources==6.1.0",
],
}
# NOTE Package data is inside MANIFEST.In
setuptools.setup(
name="diambra-arena",
url="https://github.com/diambra/arena",
version=os.environ.get("VERSION", "0.0.0"),
author="DIAMBRA Team",
author_email="[email protected]",
description="DIAMBRA™ Arena. Built with OpenAI Gym Python interface, easy to use, transforms popular video games into Reinforcement Learning environments",
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
license="Custom",
install_requires=[
'importlib-metadata<=4.12.0; python_version <= "3.7"', # problem with gym for importlib-metadata==5.0.0 and python <=3.7
"gymnasium>=0.26.3",
"inputs",
"screeninfo",
"tk",
"opencv-python>=4.4.0.42",
"grpcio",
"diambra-engine>=2.2.3",
"dacite",
],
packages=[
package
for package in setuptools.find_packages()
if package.startswith("diambra")
],
include_package_data=True,
extras_require=extras,
classifiers=[
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Artificial Life",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Arcade",
"Topic :: Education",
],
)