-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (59 loc) · 1.26 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
65
66
# pylint: disable=line-too-long
from setuptools import find_packages, setup
install_requires = [
"numpy",
"matplotlib",
"pandas",
"scikit-image",
"tqdm",
"python-multipart",
"rich",
"ray[rllib]",
"torch",
"torchvision",
"transformers",
"tensorboard",
"attrdict",
"yacs",
"scikit-image<0.20",
"imagecodecs",
"gymnasium[atari,box2d]",
"autorom[accept-rom-license]",
"aim",
"torch-scatter",
"torch-sparse",
"torch-geometric",
"simple-playgrounds @ git+https://github.com/vakker/simple-playgrounds#egg=simple-playgrounds",
"gputil",
"pillow<9.0",
"mmengine",
"HEBO>=0.2.0",
]
test_requires = [
"flake8",
"pylint",
"pytest",
"pytest-cov",
"pytest-env",
"pytest-sugar",
]
dev_requires = test_requires + [
"pre-commit",
"ipdb",
]
setup(
name="entity-rl",
version="0.0.1",
description="",
python_requires=">=3.9",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=install_requires,
dependency_links=[
"git+https://github.com/gaorkl/simple-playgrounds.git@legacy-v1#egg=simple-playgrounds",
],
extras_require={
"test": test_requires,
"dev": dev_requires,
},
)