opentrajectory 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# macOS
|
|
2
|
+
.DS_Store
|
|
3
|
+
|
|
4
|
+
# Python environments, builds, and caches
|
|
5
|
+
.venv/
|
|
6
|
+
venv/
|
|
7
|
+
__pycache__/
|
|
8
|
+
*.py[cod]
|
|
9
|
+
*.egg-info/
|
|
10
|
+
.pytest_cache/
|
|
11
|
+
.mypy_cache/
|
|
12
|
+
.ruff_cache/
|
|
13
|
+
.tox/
|
|
14
|
+
.nox/
|
|
15
|
+
.coverage
|
|
16
|
+
.coverage.*
|
|
17
|
+
htmlcov/
|
|
18
|
+
|
|
19
|
+
# JavaScript dependencies and caches
|
|
20
|
+
node_modules/
|
|
21
|
+
*.tsbuildinfo
|
|
22
|
+
.npm/
|
|
23
|
+
npm-debug.log*
|
|
24
|
+
|
|
25
|
+
# Build and coverage output
|
|
26
|
+
build/
|
|
27
|
+
dist/
|
|
28
|
+
coverage/
|
|
29
|
+
|
|
30
|
+
# Local secrets; keep example configuration trackable
|
|
31
|
+
.env
|
|
32
|
+
.env.*
|
|
33
|
+
!.env.example
|
|
34
|
+
!.env.*.example
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling>=1.27,<2"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "opentrajectory"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Python package for OpenTrajectory, a standard for agent trajectories."
|
|
9
|
+
requires-python = ">=3.10"
|
|
10
|
+
dependencies = []
|
|
11
|
+
|
|
12
|
+
[tool.hatch.build.targets.wheel]
|
|
13
|
+
packages = ["src/opentrajectory"]
|
|
14
|
+
|
|
15
|
+
[tool.hatch.build.targets.sdist]
|
|
16
|
+
include = ["pyproject.toml", "src/opentrajectory"]
|