-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
52 lines (43 loc) · 1.13 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kryptogramm"
description = "Estonian IVXV e-voting vote verification tool"
readme = "README.md"
license = "GPL-3.0-or-later"
requires-python = ">=3.7"
authors = [
{ name = "Märt Põder", email = "[email protected]" },
]
keywords = ["voting", "auditability"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Framework :: Hatch",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Security :: Cryptography",
]
dependencies = [
"asn1crypto",
"pillow",
"pyzbar",
"pyasice>=1.1.0"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/infoaed/kryptogramm"
"Bug Tracker" = "https://github.com/infoaed/kryptogramm/issues"
Source = "https://github.com/infoaed/kryptogramm"
[tool.hatch.version]
path = "__init__.py"
[project.scripts]
kryptogramm = "kryptogramm:main"
[tool.hatch.envs.default.scripts]
all = [
"hatch dep show requirements > requirements.txt",
]
[tool.hatch.build.targets.sdist]
include = [
"*.py"
]