-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.76 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
# Python Project Configuration
#
# Documentation:
# - https://packaging.python.org/en/latest/specifications/pyproject-toml/
# (https://github.com/pypa/packaging.python.org/blob/caa20073/source/specifications/pyproject-toml.rst)
# - https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/
# (https://github.com/pypa/pip/blob/24.2/docs/html/reference/build-system/pyproject-toml.md)
# - https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
# (https://github.com/pypa/setuptools/blob/v70.3.0/docs/userguide/pyproject_config.rst)
[build-system]
requires = [
"setuptools==75.3.0",
"wheel==0.45.1",
]
build-backend = "setuptools.build_meta"
[project]
name = "pe-sunat"
# version = ""
dependencies = []
requires-python = ">=3.8"
authors = [
{name = "Cordada SpA", email = "[email protected]"},
]
description = """\
Python library for Superintendencia Nacional de Aduanas y de Administración Tributaria (SUNAT) \
of Peru."""
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dynamic = ["version"]
[project.optional-dependencies]
[project.urls]
Homepage = "https://github.com/cordada/lib-pe-sunat-python/"
Changelog = "https://github.com/cordada/lib-pe-sunat-python/blob/develop/CHANGELOG.md"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]
exclude = []
namespaces = true
[tool.setuptools.dynamic]
version = {attr = "cordada.pe_sunat.__version__"}