-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
24 lines (22 loc) · 932 Bytes
/
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
[build-system]
requires = ["setuptools >= 61.0.0",
"wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gym_schem"
description = "ML env simulating the puzzle game SpaceChem."
readme = "README.md"
requires-python = ">= 3.7"
authors = [{ name = "Zig", email = "junknenopok@gmail.com" }]
license = { text = "MIT License" }
classifiers = ["License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent"]
# Per https://packaging.python.org/en/latest/guides/single-sourcing-package-version/
# and https://stackoverflow.com/a/73600610/8321410
dynamic = ["dependencies", "version"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "package.__version__"}