2023-06-24 20:30:01 +08:00
|
|
|
[project]
|
2023-11-25 02:43:06 +08:00
|
|
|
|
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"}
|
|
|
|
]
|
2023-11-25 02:43:06 +08:00
|
|
|
|
2023-06-24 20:30:01 +08:00
|
|
|
requires-python = ">=3.8"
|
|
|
|
classifiers = [
|
2023-11-25 02:43:06 +08:00
|
|
|
"Intended Audience :: Developers",
|
|
|
|
# Python 3 支持版本.
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
# Python 实现.
|
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
|
|
# 系统支持.
|
2023-06-24 20:30:01 +08:00
|
|
|
"Operating System :: OS Independent",
|
|
|
|
]
|
2023-06-24 21:01:09 +08:00
|
|
|
license = { file = "LICENSE" }
|
2023-11-25 02:43:06 +08:00
|
|
|
dynamic = ["version"]
|
|
|
|
|
2023-11-25 03:18:18 +08:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools>=61.0"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
2023-11-25 02:43:06 +08:00
|
|
|
|
2023-11-25 03:18:18 +08:00
|
|
|
#[tool.setuptools]
|
|
|
|
#packages = ["lib_not_dr", "lndl_nuitka"]
|
|
|
|
|
|
|
|
#[tool.setuptools.packages.find]
|
|
|
|
#namespaces = false
|
|
|
|
#include = [
|
|
|
|
# "lib_not_dr",
|
|
|
|
# "lndl_nuitka"
|
|
|
|
#]
|
|
|
|
#where = ["."]
|
|
|
|
|
|
|
|
#[tool.setuptools.package-dir]
|
|
|
|
#lib_not_dr = "lib_not_dr"
|
|
|
|
#lndl_nuitka = "lndl_nuitka"
|
2023-11-25 02:43:06 +08:00
|
|
|
|
2023-11-25 03:33:48 +08:00
|
|
|
[project.optional-dependencies]
|
|
|
|
toml = ["tomli >= 2.0.1"]
|
|
|
|
|
2023-11-25 02:43:06 +08:00
|
|
|
[tool.setuptools.dynamic]
|
|
|
|
version = { attr = "lib_not_dr.__version__"}
|
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-11-25 02:43:06 +08:00
|
|
|
[project.scripts]
|
|
|
|
lndl_nuitka = "lndl_nuitka:main"
|
2023-07-11 14:02:05 +08:00
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
target-version = "py38"
|
|
|
|
line-length = 150
|
|
|
|
src = [
|
2023-11-25 03:18:18 +08:00
|
|
|
"src",
|
2023-07-11 14:02:05 +08:00
|
|
|
]
|
2023-11-25 16:21:01 +08:00
|
|
|
|
|
|
|
[tool.lndl.nuitka]
|
|
|
|
main = "test-only.py"
|
|
|
|
onefile = false
|
|
|
|
standalone = true
|
|
|
|
|