-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (34 loc) · 1.4 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
[build-system]
requires = ["setuptools>=61", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "robotics_demo"
description = "Demos for robotics"
authors = [
{ name = "Wei Hu", email = "[email protected]" },
{ name = "Yue Zhao", email = "[email protected]" }
]
readme = "README.md"
requires-python = "~=3.8"
dynamic = ["version"]
dependencies = ["importlib-resources>=1.1.0", "requests>=2"]
[project.urls]
"Homepage" = "https://github.com/huweiATgithub/robotics_demo"
"Bug Tracker" = "https://github.com/huweiATgithub/robotics_demo/issues"
[tool.setuptools_scm]
write_to = "robotics_demo/_version.py"
# The following setup does not automatically find subpackages in robotics_demo (in some machine).
#[tool.setuptools]
#package-dir = {""="."}
#packages = ["robotics_demo", "robotics_demo.resources"]
[tool.setuptools.packages.find]
# The following config are not required. However, we specify them for clear organization.
# https://setuptools.pypa.io/en/stable/userguide/package_discovery.html
where = ["."]
include = ["robotics_demo"]
namespaces = true
# https://setuptools.pypa.io/en/stable/userguide/datafiles.html#non-package-data-files
# Setuptools does NOT support Non-Package Data Files.
# According to #subdirectory-for-data-files, we make data files as a namespaced subpackage. (which are default options)
[tool.setuptools.package-data]
"robotics_demo.resources" = ["**/*"]