forked from Learning-and-Intelligent-Systems/predicators
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
49 lines (48 loc) · 1.32 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
"""Setup script."""
from setuptools import find_packages, setup
# NOTE: Windows users will have to install windows-curses
# (https://pypi.org/project/windows-curses/)
setup(
name="predicators",
version="0.1.0",
packages=find_packages(include=["predicators", "predicators.*"]),
install_requires=[
"mypy",
"numpy>=1.22.3",
"pytest",
"gym==0.26.2",
"matplotlib",
"imageio",
"imageio-ffmpeg",
"pandas",
"torch==2.0.1",
"scipy",
"tabulate",
"dill",
"pyperplan",
"pathos",
"requests",
"slack_bolt",
"pybullet>=3.2.0",
"scikit-learn",
"graphlib-backport",
"openai",
"pyyaml",
"pylint==2.14.5",
"types-PyYAML",
"lisdf",
"seaborn",
"smepy@git+https://github.com/sebdumancic/structure_mapping.git",
"pg3@git+https://github.com/tomsilver/pg3.git",
"gym_sokoban@git+https://github.com/Learning-and-Intelligent-Systems/gym-sokoban.git" # pylint: disable=line-too-long
],
include_package_data=True,
extras_require={
"develop": [
"pytest-cov==2.12.1",
"pytest-pylint==0.18.0",
"yapf==0.32.0",
"docformatter==1.4",
"isort==5.10.1",
]
})