-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
66 lines (64 loc) · 1.82 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
import setuptools
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
# Information
name="balrog",
description="Benchmark for In Context Learning",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.1.0",
url="https://github.com/DavidePaglieri/BALROG/",
author="Davide Paglieri",
license="MIT",
keywords="reinforcement learning ai nlp llm",
project_urls={
"website": "https://www.balrogai.com/",
},
install_requires=[
"openai",
"anthropic",
"google-generativeai",
"hydra-core",
"opencv-python-headless",
"wandb",
"pytest",
"crafter",
"gym==0.23",
"requests",
"balrog-nle",
"minihack @ git+https://github.com/balrog-ai/minihack.git",
"textworld @ git+https://github.com/balrog-ai/TextWorld.git",
"minigrid @ git+https://github.com/BartekCupial/Minigrid.git",
"baba @ git+https://github.com/nacloos/baba-is-ai.git",
],
entry_points={
"console_scripts": [
"balrog-post-install=balrog.scripts.post_install:main",
],
},
extras_require={
"dev": [
"black",
"isort>=5.12",
"pytest<8.0",
"flake8",
"pre-commit",
"twine",
]
},
package_dir={"": "./"},
packages=setuptools.find_packages(where="./", include=["balrog*"]),
package_data={
"balrog": [
"config/config.yaml",
"environments/nle/achievements.json",
"environments/nle/Hack-Regular.ttf",
"environments/nle/tiles.pkl",
"environments/nle/Tiles16x16.png",
]
},
include_package_data=True,
python_requires=">=3.8",
)