-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (52 loc) · 1.31 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
[project]
name = "sprig-aes"
version = "0.7.0"
description = ""
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Isman Firmansyah"},
{email = "[email protected]"}
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
dependencies = [
"cryptography",
"click"
]
requires-python = ">=3.9"
[project.scripts]
sprig-aes = "sprig_aes.cli:cli"
[project.urls]
"Homepage" = "https://github.com/iromli/sprig-aes"
[build-system]
requires = [
# The minimum setuptools version is specific to the PEP 517 backend,
# and may be stricter than the version required in `setup.cfg`
"setuptools>=40.6.0,!=60.9.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.mypy]
strict = true
# follow_imports = "silent"
# implicit_reexport = true
pretty = true
show_error_context = true
show_column_numbers = true
show_error_codes = true
[[tool.mypy.overrides]]
module = [
"sprig_aes.*"
]
ignore_missing_imports = true