-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
67 lines (60 loc) · 1.38 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
[tool.poetry]
name = "evergreen.py"
version = "3.10.6"
description = "Python client for the Evergreen API"
authors = [
"DevProd Services & Integrations Team <[email protected]>",
]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/evergreen-ci/evergreen.py"
packages = [
{ include = "evergreen", from = "src" },
]
[tool.poetry.scripts]
evg-api = "evergreen.cli.main:main"
[tool.poetry.dependencies]
python = "^3.9"
Click = ">=7"
python-dateutil = ">=2"
PyYAML = ">=5"
requests = ">=2"
structlog = ">=19"
pydantic = ">=1"
[tool.poetry.dev-dependencies]
pytest = "^7.4"
pytest-black = "^0.3.7"
pytest-cov = "^2.8"
pytest-flake8 = "^1.0"
pytest-mypy = "^0.8"
pytest-pydocstyle = "^2.3"
sphinx = "^5.0"
sphinx-readable-theme = "^1.3.0"
ghpusher = "^0.2.2"
black = "^19.10b0"
isort = "^5.5.4"
pytest-isort = "^3.1"
flake8 = "^4.0"
flake8-bugbear = "^20.1.4"
pre-commit = "^2.7.1"
coveralls = "^3.0.0"
types-PyYAML = "^6.0.1"
types-python-dateutil = "^2.8.2"
types-requests = "^2.26.0"
responses = "^0.25.0"
[tool.pytest.ini_options]
flake8-ignore = "W605 W503 W291 E203 E501 F821"
addopts = "--flake8 --black --pydocstyle --mypy --isort"
testpaths = [
"src",
"tests",
]
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
line_length = 100
multi_line_output = 3
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"