-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (66 loc) · 1.76 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (66 loc) · 1.76 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["hatchling>=1.20"]
build-backend = "hatchling.build"
[project]
name = "dsg_jit"
version = "0.7.1"
description = "Differentiable Scene Graphs with JAX-based factor graphs and SLAM tooling."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Business Source License 1.1" }
authors = [
{ name = "Tanner Kocher" }
]
keywords = [
"SLAM",
"factor-graph",
"JAX",
"scene-graph",
"robotics",
"optimization",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
]
# 🔧 Core runtime deps (you can refine these as needed)
dependencies = [
"jax>=0.4.30",
"jaxlib>=0.4.30",
"numpy>=1.24",
"matplotlib>=3.8",
]
[project.optional-dependencies]
# For docs (MkDocs)
docs = [
"mkdocs>=1.5",
"mkdocs-material>=9.5",
]
# For dev tooling / testing (adjust as you actually use them)
dev = [
"pytest>=7.0",
]
[project.urls]
Homepage = "https://github.com/tannertorrey3/DSG-JIT"
Documentation = "https://tannertorrey3.github.io/DSG-JIT/"
Source = "https://github.com/tannertorrey3/DSG-JIT"
Issues = "https://github.com/tannertorrey3/DSG-JIT/issues"
[tool.hatch.build.targets.wheel]
# This tells hatchling what to package
packages = ["dsg-jit/dsg_jit"]
[tool.hatch.build.targets.sdist]
include = [
"dsg-jit/dsg_jit",
"README.md",
"LICENSE",
]