forked from r1chardj0n3s/parse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (30 loc) · 967 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (30 loc) · 967 Bytes
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
[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 = "MIT"
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[[project.authors]]
name = "Richard Jones"
email = "richard@python.org"
[[project.maintainers]]
name = "Wim Jeantine-Glenn"
email = "hey@wimglenn.com"
[project.urls]
homepage = "https://github.com/r1chardj0n3s/parse"
[tool.setuptools.dynamic]
version = {attr = "parse.__version__"}
[tool.distutils.bdist_wheel]
universal = true
[tool.pytest.ini_options]
addopts = "--cov=parse --cov-report=term-missing --cov-append --cov-branch --doctest-modules --doctest-glob=README.rst"