-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.38 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
[project]
name = "gtwrap"
version = "2.0.0"
description = "Library to wrap C++ with Python and Matlab"
authors = [
{ name="Frank Dellaert", email="dellaert@gatech.edu" },
{ name = "Varun Agrawal", email = "varunagrawal@gatech.edu" },
{ name = "Duy Nguyen Ta", email = "duynguyen@gatech.edu" },
{ name = "Fan Jiang", email = "i@fanjiang.me" },
{ name = "Matthew Sklar", email = "matthewsklar227@gmail.com" }
]
readme = "README.md"
license = "BSD-3-Clause"
keywords=["wrap", "bindings", "cpp", "python", "matlab"]
classifiers = [
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.10"
dependencies = [
"pyparsing>=3.2.5",
]
[dependency-groups]
dev = [
"pytest>=9.0.1",
"pytest-cov>=7.0.0",
]
[project.urls]
Homepage = "https://github.com/borglab/wrap"
Documentation = "https://github.com/borglab/wrap"
Repository = "https://github.com/borglab/wrap"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = "--cov=gtwrap --cov-report html --cov-report term"
norecursedirs = []
[tool.uv.build-backend]
module-name = "gtwrap"