-
Notifications
You must be signed in to change notification settings - Fork 185
/
Copy pathpyproject.toml
38 lines (34 loc) · 1.13 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
[build-system]
requires = [
"setuptools >= 61.0",
"cffi >= 1.0.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "textworld"
description = "Microsoft Textworld - A Text-based Learning Environment."
authors = [
{ name = "Marc-Alexandre Côté" },
{ name = "Microsoft Textworld", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version", "optional-dependencies", "dependencies"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Life",
]
license = {file = "LICENSE.txt"}
[project.urls]
Homepage = "https://github.com/microsoft/TextWorld"
Issues = "https://github.com/microsoft/TextWorld/issues"