|
- [build-system]
- requires = ["setuptools", "wheel"]
- build-backend = "setuptools.build_meta"
-
- [project]
- name = "adtools"
- description = "A simple build tool set based on CMake and Python3."
- requires-python = ">=3.7"
- license = { text = "WTFPL2" }
- keywords = ["AdTools"]
- dependencies = [
- "requests",
- "crayons",
- ]
-
- authors = [{ name = "anjingyu", email = "anjingyu@navinfo.com" },]
-
- classifiers = [
- "Development Status :: 4 - Beta",
- "Programming Language :: Python :: 3.8",
- "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",
- ]
-
- dynamic = ["readme", "version"]
-
- [project.scripts]
- admake="adtools.admake:main"
- adgit="adtools.adgit:main"
-
- [tool.setuptools]
- package-dir = {"" = "."}
- zip-safe = true
- include-package-data = true
-
- [tool.setuptools.packages.find]
- where = ["."]
-
- [tool.setuptools.package-data]
- adtools = ["cmake/*.cmake", "cmake/**/*.cmake"]
-
- [tool.setuptools.dynamic]
- version = { attr = "adtools.__version__" }
- readme = { file = "README.md", content-type = "text/markdown" }
|