-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 846 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 846 Bytes
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
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "sugar-cli"
authors = [{ name = "Huang, Hong-Chang", email = "seer852741@gmail.com" }]
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.12"
dynamic = ["version", "description"]
dependencies = ["docstring-parser>=0.16"]
license = { file = "LICENSE" }
[project.urls]
Homepage = "https://github.com/Stanley5249/sugar"
[tool.flit.module]
name = "sugar"
[dependency-groups]
dev = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.5.36",
"mkdocstrings[python]>=0.26.1",
"pytest>=8.3.3",
]