-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (47 loc) · 1.6 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
[project]
name = "animalai"
version = "5.0.1"
description = "Animal-AI Python API"
license = "MIT"
readme = "README.md"
authors = [
{ name = "Animal-AI Team", email = "[email protected]" },
{ name = "Matt Crosby" },
{ name = "Ibrahim Alhas" },
{ name = "Konstantinos Voudouris" },
{ name = "Wout Schellaert" },
{ name = "Joel Holmes" },
{ name = "Ben Beyret" },
{ name = "Ben Slater"},
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
]
requires-python = ">=3.10.12, <3.10.13"
dependencies = [
"mlagents_envs>=1.0.0",
"numpy",
"protobuf==3.20.3",
]
[project.urls]
"Website" = "https://animalai.org/"
"Repository" = "https://github.com/Kinds-of-Intelligence-CFI/animal-ai-python"
"Main Repository" = "https://github.com/Kinds-of-Intelligence-CFI/animal-ai"
"Releases" = "https://https://github.com/Kinds-of-Intelligence-CFI/animal-ai/releases"
"Documentation" = "https://github.com/Kinds-of-Intelligence-CFI/animal-ai/tree/main/docs"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true