-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathpyproject.toml
38 lines (31 loc) · 912 Bytes
/
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
34
35
36
37
38
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "parse"
dynamic = ["version"]
readme = "README.rst"
description = "parse() is the opposite of format()"
license = {file = "LICENSE"}
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
]
[[project.authors]]
name = "Richard Jones"
email = "[email protected]"
[[project.maintainers]]
name = "Wim Glenn"
email = "[email protected]"
[project.urls]
homepage = "https://github.com/r1chardj0n3s/parse"
[tool.setuptools]
py-modules = ["parse"]
[tool.setuptools.dynamic]
version = {attr = "parse.__version__"}
[tool.distutils.bdist_wheel]
universal = true