-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
42 lines (37 loc) · 1 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
[project]
name = "DearBagPlayer"
description = "DearBagPlayer is a flexible rosbag player based on Dear PyGui in Python."
readme = "README.md"
authors = [
{ name="Wei Wang", email="wei.wang.bit@outlook.com" },
]
license = { text = "MIT" }
requires-python = ">= 3.9"
dependencies = [
"dearpygui>=1.11.1",
"numpy>=2.0.1",
"rosbag>=1.15.11",
]
keywords = [
"DearPyGui",
"Visualization",
"rosbag",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/Magic-wei/DearBagPlayer"
"Bug Tracker" = "https://github.com/Magic-wei/DearBagPlayer/issues"
[project.scripts]
dearbagplayer = "dearbagplayer.__main__:main"
[build-system]
requires = ["setuptools>=58.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "dearbagplayer.__version__"}
[tool.setuptools.packages.find]
include = ["dearbagplayer"]