-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
55 lines (46 loc) · 1.27 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
[tool.poetry]
name = "pyenigma"
version = "0.4.2"
description = "Python Enigma cypher machine simulator."
authors = [
"Cédric Bonhomme <[email protected]>",
"Christophe Goessen"
]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://sr.ht/~cedric/pyenigma"
repository = "https://git.sr.ht/~cedric/pyenigma"
keywords = ["cryptography", "security", "enigma"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Security",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
]
include = [
"COPYING",
"README.md",
"CHANGELOG.md",
"bin/*"
]
[tool.poetry.scripts]
enigma = "bin.enigma:main"
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
mypy = "^0.991"
flake8 = "^6.0.0"
nose2 = "^0.12.0"
pre-commit = "^2.21.0"
pip-audit = "^2.4.13"
black = ">=22.12,<25.0"
pyupgrade = "^3.3.1"
[build-system]
requires = ["poetry>=1.3.1"]
build-backend = "poetry.masonry.api"