-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 955 Bytes
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 955 Bytes
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
[tool.poetry]
name = "myAES"
version = "0.1.0"
description = "Package for giving AES methods CLI usability"
authors = [
"Sean Crowley <smcrowley8@gmail.com>",
"Dawid Ryczek <EMAIL>"
]
maintainers = ["Sean Crowley <smcrowley8@gmail.com>", "Dawid Ryczek <EMAIL>"]
readme = "README.md"
homepage = ""
repository = "https://github.com/smcrowley8/myAES"
keywords = [
"Poetry",
"CLI",
"AES",
"encryption"
]
packages = [
{include = "myAES"}
]
[tool.poetry.scripts]
myAES= "myAES.main:cli"
[tool.poetry.dependencies]
python = "^3.8.12"
pre-commit = "^2.15.0"
flake8 = "^4.0.1"
click = "^8.0.3"
ansicolor = "^0.3.2"
codespell = "^2.1.0"
rich = "^10.16.2"
requests = "^2.27.1"
pydantic = "^1.9.0"
pdoc3 = "^0.10.0"
[tool.poetry.dev-dependencies]
pre-commit = "^2.10.1"
pytest = "^6.2.5"
black = {version = "^21.9b0", allow-prereleases = true}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"