-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
58 lines (50 loc) · 1.75 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
[project]
name = "Serialize"
authors = [
{name="Hernan E. Grecco", email="[email protected]"}
]
license = {text = "BSD-3-Clause"}
description = "A common API for multiple serialization formats with support for custom classes"
readme = "README.rst"
maintainers = [
{name="Hernan E. Grecco", email="[email protected]"},
]
keywords = ["serialization", "deserialization", "packing", "unpacking"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9"
dynamic = ["dependencies", "optional-dependencies", "version"]
[tool.setuptools.package-data]
serialize = ["py.typed", ]
[tool.setuptools]
packages = ["serialize"]
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
optional-dependencies.test = {file = "requirements.test.txt"}
optional-dependencies.full = {file = "requirements.full.txt"}
[project.urls]
"Homepage" = "https://github.com/hgrecco/serialize"
"Bug Tracker" = "https://github.com/hgrecco/serialize/issues"
[tool.setuptools_scm]
[tool.pytest.ini_options]
addopts = "--import-mode=importlib --doctest-modules"
pythonpath = "."
[tool.ruff]
select = ["E", "F", "I"]
extend-include = ["*.ipynb"]