-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
52 lines (44 loc) · 1.75 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
43
44
45
46
47
48
49
50
51
52
[build-system]
# requires is a list of packages that are needed to build your package.
# You don’t need to install them;
# build frontends like pip will install them automatically in a temporary,
# isolated virtual environment for use during the build process
requires = ["hatchling"]
build-backend = "hatchling.build"
# see https://hatch.pypa.io/latest/config/build/#packages for more details on packages options
[tool.hatch.build]
sources = ["src/*"]
# this is the [project] table
[project]
# add the distribution name of the package, the tar ball and python wheel use this name, this name goes the /home/$USER/.local/lib/python3.8/site-packages/
name = "rosbag_merge"
# version is the package version. See the version specifier specification
# for more details on versions. Some build backends allow it to be
# specified another way, such as from a file or a git tag.
version = "0.1.6"
authors = [
{ name="Jonathan Sanabria", email="[email protected]" },
]
description = "A gathering of tools for merging rosbags and saving their topic information to csv."
readme = "README.md"
license = { file="LICENSE" }
# installers like pip use this to check for matching python versions
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"rosbags",
"icecream",
"tqdm",
]
# this installs an executable in /home/$USER/.local/bin/rosbag-tools
[project.scripts]
rosbag-merge = "rosbag_merge.main:main"
[project.urls]
"Homepage" = "https://github.com/1hada/rosbag-merge/"
"Bug Tracker" = "https://github.com/1hada/rosbag-merge/issues/"