-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
75 lines (68 loc) · 2.3 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools >= 61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "parsetypes"
dynamic = ["version", "readme"]
authors = [
{name = "Yu Shiyang", email = "yu.shiyang@gnayihs.uy"}
]
description = "Parse serialised data to recover their original underlying types"
license = {text = "MPL-2.0"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: File Formats",
"Topic :: Office/Business",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
keywords = ["python", "str", "string", "types", "conversion"]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = [
"pytest ~= 7.3.1",
"coverage ~= 7.2",
"pdoc ~= 13.1.1",
"pyroma ~= 4.2",
"build ~= 1.2.2",
"tox ~= 4.5.1",
"tox-extras == 0.0.2",
]
test = ["pytest ~= 7.3.1", "coverage ~= 7.2"]
docs = ["pdoc ~= 13.1.1"]
metadata = ["pyroma ~= 4.2"]
package = ["build ~= 1.2.2"]
packagetest = ["twine ~= 6.0.1"]
ci = ["tox ~= 4.5.1", "tox-extras == 0.0.2"]
publish = ["twine ~= 6.0.1"]
[project.urls]
# key is used verbatim on PyPI
Homepage = "https://github.com/yushiyangk/parsetypes"
Documentation = "https://parsetypes.gnayihs.uy/"
Issues = "https://github.com/yushiyangk/parsetypes/issues"
[tool.pytest.ini_options]
addopts = "tests"
[tool.coverage.run]
source_pkgs = ["parsetypes"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]
namespaces = false
[tool.setuptools.dynamic]
version = {attr = "parsetypes.__version__"}
readme = {file = ["README.md", "CHANGELOG.md"], content-type = "text/markdown"}