-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 1.26 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "more_abc"
version = "2.2.9"
description = "An extension of the abc module with many similar features added."
readme = "README.md"
license = { text = "GNU-3.0" }
authors = [
{ name = "Evan Yang", email = "quantbit@126.com" }
]
requires-python = ">=3.9"
keywords = ["abc", "abstract", "mixin", "dataclass", "enum", "logging", "collections", "io", "json", "decorators"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/aiwonderland/more_abc"
Repository = "https://github.com/aiwonderland/more_abc"
[project.scripts]
more-abc = "more_abc.__main__:main"
[tool.hatch.build.targets.wheel]
packages = ["more_abc"]