-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (50 loc) · 1.17 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
52
53
54
55
56
57
58
59
[project]
name = "pydre"
version = "24.0.3"
readme = "readme.md"
dependencies = [
"polars",
"numpy",
"scipy",
"icecream",
"tqdm",
"loguru"
]
requires-python = ">= 3.12"
authors = [ {name = "Thomas Kerwin", email = "[email protected]"} ]
description = "Driving simulation data processing engine"
keywords = ["driving simulation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.12",
]
[project.scripts]
pydre-run = "pydre:run"
[project.urls]
Documentation = "https://osudsl.github.io/pydre/"
Repository = "https://github.com/OSUDSL/pydre"
[tool.rye]
managed = true
dev-dependencies = [
"ptpython",
"mkdocs>=1.6.0",
"mkdocs-material",
"mkdocstrings[python]",
"black",
"pytest>=8.3.2",
"pytest-datafiles",
"griffe==1.2.0"
]
# Build System
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/pydre"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]