forked from balrog-ai/BALROG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.37 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
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/",
},
entry_points={
"console_scripts": [
"balrog-post-install=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*"]),
include_package_data=True,
python_requires=">=3.8",
)
# Wheels are built with the following commands since building them in the docker container is TIME CONSUMING
# Build wheels for each package
# pip wheel git+https://github.com/balrog-ai/minihack.git
# pip wheel git+https://github.com/balrog-ai/TextWorld.git
# pip wheel git+https://github.com/BartekCupial/Minigrid.git
# pip wheel git+https://github.com/nacloos/baba-is-ai.git