-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (70 loc) · 2.27 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
# Poetry pyproject.toml: https://python-poetry.org/docs/pyproject/
[tool.poetry]
name = "mgmt"
version = "0.7.6"
description = ""
readme = "README.md"
authors = ["Will Wright <[email protected]>"]
license = "GNU GPL v3.0"
repository = "https://github.com/will-wright-eng/media-mgmt-cli"
homepage = "https://github.com/will-wright-eng/media-mgmt-cli"
# Pypi classifiers: https://pypi.org/classifiers/
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.dependencies]
python = "^3.8"
boto3 = "^1.26.54"
botocore = "^1.29.54"
certifi = ">=2022.12.7,<2024.0.0"
click = "^8.1.3"
jmespath = "^1.0.1"
python-dateutil = "^2.8.2"
s3transfer = "^0.6.0"
six = "^1.16.0"
urllib3 = "^1.26.14"
pytest = "^7.2.1"
typer = "^0.9.0"
rich = "^13.3.5"
python-dotenv = "^1.0.0"
rarfile = "^4.0"
toml = "^0.10.2"
[package.optional-dependencies]
test = [
"pytest >= 7.2.2, < 8.0.0",
"requests-mock[fixture] >= 1.10.0, < 2.0.0",
"isort >= 5.12.0, < 6.0.0",
"black == 23.1.0",
"types-requests == 2.28.11.17",
"codespell >= 2.2.5, < 3.0.0"
]
[build-system]
requires = ["poetry-core>=1.3.2"]
build-backend = "poetry.core.masonry.api"
# Entry points for the package https://python-poetry.org/docs/pyproject/#scripts
[tool.poetry.scripts]
"mgmt" = "mgmt:cli"
# https://mypy.readthedocs.io/en/latest/config_file.html#using-a-pyproject-toml-file
[tool.mypy]
pretty = true
show_traceback = true
color_output = true
ignore_m1sing_imports = true
allow_redefinition = true
[tool.pytest.ini_options]
# https://docs.pytest.org/en/6.2.x/customize.html#pyproject-toml
# Directories that are not visited by pytest collector:
norecursedirs =["hooks", "*.egg", ".eggs", "dist", "build", "docs", ".tox", ".git", "__pycache__"]
doctest_optionflags = ["NUMBER", "NORMALIZE_WHITESPACE", "IGNORE_EXCEPTION_DETAIL"]
[tool.codespell]
skip = '.git,venv'
# ignore-words-list = ''