|
| 1 | +[project] |
| 2 | +name = "gtwrap" |
| 3 | +version = "2.0.0" |
| 4 | +description = "Library to wrap C++ with Python and Matlab" |
| 5 | +authors = [ |
| 6 | + { name="Frank Dellaert", email="dellaert@gatech.edu" }, |
| 7 | + { name = "Varun Agrawal", email = "varunagrawal@gatech.edu" }, |
| 8 | + { name = "Duy Nguyen Ta", email = "duynguyen@gatech.edu" }, |
| 9 | + { name = "Fan Jiang", email = "i@fanjiang.me" }, |
| 10 | + { name = "Matthew Sklar", email = "matthewsklar227@gmail.com" } |
| 11 | +] |
| 12 | +readme = "README.md" |
| 13 | +license = "BSD-3-Clause" |
| 14 | +keywords=["wrap", "bindings", "cpp", "python", "matlab"] |
| 15 | + |
| 16 | +classifiers = [ |
| 17 | + "Intended Audience :: Education", |
| 18 | + "Intended Audience :: Developers", |
| 19 | + "Intended Audience :: Science/Research", |
| 20 | + "Operating System :: MacOS", |
| 21 | + "Operating System :: Microsoft :: Windows", |
| 22 | + "Operating System :: POSIX :: Linux", |
| 23 | + "Programming Language :: Python", |
| 24 | + "Programming Language :: Python :: 3.11", |
| 25 | +] |
| 26 | + |
| 27 | +requires-python = ">=3.10" |
| 28 | +dependencies = [ |
| 29 | + "pyparsing>=3.2.5", |
| 30 | +] |
| 31 | + |
| 32 | +[dependency-groups] |
| 33 | +dev = [ |
| 34 | + "pytest>=9.0.1", |
| 35 | + "pytest-cov>=7.0.0", |
| 36 | +] |
| 37 | + |
| 38 | +[project.urls] |
| 39 | +Homepage = "https://github.com/borglab/wrap" |
| 40 | +Documentation = "https://github.com/borglab/wrap" |
| 41 | +Repository = "https://github.com/borglab/wrap" |
| 42 | + |
| 43 | +[build-system] |
| 44 | +requires = ["hatchling"] |
| 45 | +build-backend = "hatchling.build" |
| 46 | + |
| 47 | +[tool.pytest.ini_options] |
| 48 | +addopts = "--cov=gtwrap --cov-report html --cov-report term" |
| 49 | +norecursedirs = [] |
| 50 | + |
| 51 | +[tool.uv.build-backend] |
| 52 | +module-name = "gtwrap" |
0 commit comments