-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (33 loc) · 876 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
[tool.poetry]
name = "memecrypt"
version = "1.5.5"
description = "An encryption tool, designed for CTF challenges and fun purposes."
authors = ["Sh3llcod3 <28938427+Sh3llcod3@users.noreply.github.com>"]
license = "MIT"
readme = 'README.md'
repository = "https://github.com/Sh3llcod3/Memecrypt"
homepage = "https://github.com/Sh3llcod3/Memecrypt"
classifiers = [
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
]
include = [
"memecrypt/*",
]
[tool.poetry.dependencies]
python = "^3.8"
requests = "*"
easyparse = "*"
[tool.poetry.dev-dependencies]
flake8 = "*"
flake8-bandit = "*"
flake8-bugbear = "*"
flake8-import-order = "*"
flake8-string-format = "*"
flake8-tidy-imports = "*"
flake8-todo = "*"
[tool.poetry.scripts]
memecrypt = "memecrypt:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"