-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
43 lines (32 loc) · 1023 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name="python_enigma"
dynamic=["version"]
requires-python = ">= 3.6"
authors= [
{name="Zachary Adam-MacEwen"},
]
maintainers = [
{name="Jeffrey P Goldberg", email="[email protected]"},
]
description="A package which adds Enigma Machine-emulating functionality"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Security :: Cryptography",
"Topic :: Sociology :: History",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/ZAdamMac/python-enigma/"
Changelog = "https://github.com/ZAdamMac/python-enigma/blob/master/CHANGELOG.md"
Repository = "https://github.com/ZAdamMac/python-enigma.git"
[tool.hatch.version]
path = "python_enigma/__init__.py"