lib-not-dr/pyproject.toml

28 lines
686 B
TOML
Raw Normal View History

2023-06-24 20:30:01 +08:00
[project]
2023-11-18 23:11:54 +08:00
version = "0.2.0-alpha0"
2023-06-24 20:30:01 +08:00
name = "lib-not-dr"
description = "A python lib created from Difficult Rocket development"
readme = "README.md"
authors = [
{name = "shenjackyuanjie", email = "3695888@qq.com"}
]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
2023-06-24 21:01:09 +08:00
license = { file = "LICENSE" }
2023-06-25 02:21:41 +08:00
[project.urls]
Homepage = "https://github.com/shenjackyuanjie/lib-not-dr"
Repository = "https://github.com/shenjackyuanjie/lib-not-dr"
Changelog = "https://github.com/shenjackyuanjie/lib-not-dr/blob/main/docs/change_log.md"
2023-07-11 14:02:05 +08:00
[tool.ruff]
target-version = "py38"
line-length = 150
src = [
"lib_not_dr"
]