-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.26 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
[tool.poetry]
name = "partifact"
version = "0.3.0"
description = "CodeArtifact utilties for Poetry"
authors = ["David Steiner <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Validus-Risk-Management/partifact"
[tool.poetry.scripts]
partifact = "partifact.main:app"
[tool.poetry.dependencies]
python = "^3.8"
boto3 = "^1.15"
tomlkit = ">=0.7.0,<1.0.0"
typer = "^0.9.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
flake8 = "^3.9.0"
flake8-absolute-import = "^1.0"
flake8-blind-except = "^0.2.0"
flake8-breakpoint = "^1.1.0"
flake8-bugbear = "^21.4.3"
flake8-builtins = "^1.5.3"
flake8-cognitive-complexity = "^0.1.0"
flake8-comprehensions = "^3.5.0"
flake8-docstrings = "^1.6"
flake8-eradicate = "^1.1.0"
flake8-implicit-str-concat = "^0.2.0"
flake8-mutable = "^1.2.0"
flake8-print = "^4.0.0"
flake8-pytest-style = "^1.5.0"
flake8-simplify = "^0.14.1"
isort = "^5.12.0"
mypy = "^0.910"
pep8-naming = "^0.12.1"
pre-commit = "^2.14.0"
pyfakefs = "^4.5.0"
pytest = "^7.2.0"
pytest-mock = "^3.6.1"
pytest-cov = "^4.0.0"
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = true
exclude = "tests/"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"