-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (32 loc) · 1.1 KB
/
pyproject.toml
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]
dynamic = ['version']
name = "useful-decorators"
description = "Some decorators for Python"
readme = "README.md"
requires-python = ">=3.6"
license = { file = "LICENSE" }
keywords = ["decorator", "python", "extensions"]
authors = [
{ name = "Jannes Mülller", email = "[email protected]" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
homepage = "https://github.com/Hypercookie/UsefulDecorators"
documentation = "https://github.com/Hypercookie/UsefulDecorators"
changelog = "https://github.com/Hypercookie/UsefulDecorators/releases"
[tool.flit.module]
name = "useful_decorators"