-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (41 loc) · 1.19 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "prescyent"
dynamic = ["version"]
description = "Data-driven trajectory forecasting library"
readme = "README.md"
authors = [
{name = "Alexis Biver", email = "alexis.biver@inria.fr"}
]
license = {text = "MIT"}
keywords = ["trajectory", "forecasting", "pytorch_lightning"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent"
]
dependencies = [
"h5py>=3.10,<4",
"matplotlib>=3.0,<3.8",
"numpy>=1.17.3,<1.25.0",
"pydantic>=2.0,<2.5",
"pytorch_lightning>=2.0,<2.1",
"protobuf>=4.0",
"scipy>=1.9,<1.12",
"tensorboard>=2.0,<2.14",
"torch>=2.0,<2.2",
"tqdm>=4.66",
]
[project.urls]
Homepage = "https://github.com/hucebot/prescyent"
Issues = "https://github.com/hucebot/prescyent/issues"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.dynamic]
version = {attr = "prescyent.__version__"}