-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
81 lines (70 loc) · 2.21 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
name = "encryptdef"
description = "Projeto em python para criptografar e descriptografar dados e arquivos de forma interativa e CLI"
authors = [{ name = "Ayslan Batista", email = "ayslan.batista@hotmail.com" }]
requires-python = ">=3.10"
license = { text = "MIT" }
version = "1.0.9"
dynamic = ["readme", "dependencies", "optional-dependencies"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security :: Cryptography",
]
[project.urls]
Homepage = "https://github.com/AyslanBatista/encryptdef"
Repository = "https://github.com/AyslanBatista/encryptdef"
Issues = "https://github.com/AyslanBatista/encryptdef/issues"
# Lista de quais são os nomes dos entrypoints e os pacotes entrypoints
[project.scripts]
# Forma de usar diretamente o programa ex: encryptdef --version
encryptdef = "encryptdef.__main__:main"
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["encryptdef"]
[tool.setuptools.dynamic]
readme = { file = ["README.md"], content-type = "text/markdown" }
dependencies = { file = "requirements.txt" }
[tool.setuptools.dynamic.optional-dependencies]
dev = { file = "requirements.dev.txt" }
test = { file = "requirements.test.txt" }
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q -vv"
testpaths = "tests"
filterwarnings = "ignore::DeprecationWarning:rich_click"
[tool.flake8]
exclude = [".venv", "build", ".vscodelocal", "migrations", "template.py"]
max-line-length = 79
[tool.black]
line-length = 79
target-version = ["py310", "py311"]
exclude = '''
/(
\.eggs
| \.git
| \.venv
| _build
| build
| dist
| migrations
)/
'''
[tool.isort]
profile = "black"
src_paths = ["encryptdef", "tests"]
multi_line_output = 3
line_length = 79
force_grid_wrap = 0
use_parentheses = true
include_trailing_comma = true
[tool.setuptools.package-data]
encryptdef = ["assets/*", "requirements*.txt", "tests/"]