-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (47 loc) · 931 Bytes
/
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
[tool.poetry]
name = "watchtower"
version = "0.1.0"
description = "Sentinels for some concerns"
authors = ["Dooon"]
license = "GNU GPLv3"
[tool.poetry.dependencies]
python = "^3.9"
httpx = "^0.16.1"
selectolax = "^0.2.10"
python-dotenv = "^0.15.0"
furl = "^2.1.0"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
mypy = "^0.800"
isort = "^5.7.0"
flake8 = "^3.8.4"
pytest = "^6.2.2"
ipython = "^7.20.0"
pre-commit = "^2.10.1"
autoflake = "^1.4"
pytest-cov = "^2.11.1"
pytest-httpx = "^0.10.1"
[tool.black]
line-length = 119
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.python-version
| _build
| buck-out
| build
| dist
)/
)
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"