-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (80 loc) · 2.37 KB
/
Copy pathpyproject.toml
File metadata and controls
92 lines (80 loc) · 2.37 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools>=78.1.1"]
build-backend = "setuptools.build_meta"
[project]
name = "cfdiclient"
version = "1.6.3"
description = "Cliente Python Web Service del SAT para la descarga masiva de CFDIs"
readme = "README.md"
requires-python = ">=3.9"
license = "GPL-3.0-only"
authors = [
{ name = "Luis Iturrios", email = "luisiturrios1@gmail.com" },
]
dependencies = [
"lxml>=6.1.0",
"requests>=2.32.5",
"pycryptodome>=3.19.1",
"pyOpenSSL>=26.0.0",
"cryptography>=46.0.6",
"idna>=3.15",
"urllib3>=2.6.3",
]
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"atomicwrites",
"autopep8",
"build",
"importlib-metadata>=2.1.1",
"pygments>=2.20.0",
"pytest>=8.4.2",
"python-semantic-release>=10.5.3",
"setuptools>=78.1.1",
"twine",
"typing-extensions",
"wheel>=0.46.2",
]
[project.urls]
Homepage = "https://github.com/luisiturrios1/python-cfdiclient"
Repository = "https://github.com/luisiturrios1/python-cfdiclient"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["cfdiclient*"]
[tool.setuptools.package-data]
cfdiclient = ["*.xml"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
version_variables = ["cfdiclient/__init__.py:version"]
build_command = "python -m pip install --upgrade build && python -m build"
commit_message = "chore(release): v{version}"
commit_parser = "conventional"
tag_format = "v{version}"
[tool.semantic_release.branches.master]
match = "master"
prerelease = false
prerelease_token = "rc"
[tool.semantic_release.branches.prerelease]
match = "^(?!master$).+"
prerelease = true
prerelease_token = "dev"
[tool.semantic_release.commit_parser_options]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]
other_allowed_tags = ["build", "chore", "ci", "docs", "style", "refactor", "test"]
allowed_tags = ["feat", "fix", "perf", "build", "chore", "ci", "docs", "style", "refactor", "test"]
default_bump_level = 0
parse_squash_commits = true
ignore_merge_commits = true
[tool.semantic_release.publish]
dist_glob_patterns = ["dist/*"]
upload_to_vcs_release = true