-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
33 lines (30 loc) · 1.04 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
[build-system]
requires = ["setuptools"]
[project]
name = "lp2"
authors = [
{name = "Nicolas Gorlo", email = "[email protected]"},
{name = "Lukas Schmid", email = "[email protected]"},
{name = "Luca Carlone", email = "[email protected]"}
]
description = "LP2: Language-based Probabilistic Long-Term Prediction"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Robotics",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dynamic = ["version"]
[project.urls]
Source = "https://github.com/MIT-SPARK/LP2"
Tracker = "https://github.com/MIT-SPARK/LP2/issues"
[tool.setuptools.packages.find]
where = ["src"]