-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.25 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (40 loc) · 1.25 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyksef"
version = "0.3.3"
description = "KSeF Authentication library"
readme = "README.md"
authors = [
{name = "Michał Leszczyński", email = "ml@icedev.pl"}
]
license = {text = "MIT"}
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"requests>=2.32.5",
"signxml>=4.2.2",
"python-pkcs11>=0.9.3"
]
[project.scripts]
ksef_auth_file = "pyksef.cli.ksef_auth_file:cli"
ksef_auth_pkcs11 = "pyksef.cli.ksef_auth_pkcs11:cli"
p11_list_objects = "pyksef.cli.p11_list_objects:cli"
p11_list_tokens = "pyksef.cli.p11_list_tokens:cli"
[project.urls]
Homepage = "https://github.com/icedevml/pyksef"
Repository = "https://github.com/icedevml/pyksef"
Issues = "https://github.com/icedevml/pyksef/issues"
[tool.setuptools.packages.find]
where = ["src"]