-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
59 lines (48 loc) · 1.5 KB
/
pyproject.toml
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
[project]
name = "language_world"
version = "0.1.1"
description = "A robotics and language benchmark"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
authors = [
{name = "K.R. Zentner", email = "krzentner@gmail.com" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
# The user should install a version of their own.
dependencies = [
"numpy>=1.22"
]
[project.urls]
"Homepage" = "https://github.com/krzentner/language-world"
"Bug Reports" = "https://github.com/krzentner/language-world/issues"
"Source" = "https://github.com/krzentner/language-world"
# Use setuptools to install the main script
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
# Below is poetry setup for developing this package
[tool.poetry.dependencies]
python = "^3.7"
[tool.pyright]
include = ["src"]
venv = ".venv"
[tool.poetry]
name = "language_world"
version = "0.1.1"
description = ""
authors = ["K.R. Zentner <krzentner@gmail.com>"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.2"
metaworld = { git = "https://github.com/Farama-Foundation/Metaworld.git", tag = "v2.0.0" }