forked from opt-out-tools/public_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (46 loc) · 934 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 = "opt_out.public_api"
version = "0.1.0"
description = "Public API for opt-out website, browser extensions and 3rd party tools"
authors = ["Bojan Miletic <[email protected]>"]
readme = "README.md"
packages = [
{ include = "opt_out", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.7"
django = "^2.2"
psycopg2 = "^2.8"
python-decouple = "^3.1"
requests = "^2.22"
scikit-learn = "^0.21.3"
[tool.poetry.dev-dependencies]
pytest = "^3.4"
pre-commit = "^1.17"
black = { version = "*", allows-prereleases = true }
flake8 = "*"
flake8-bugbear = "*"
pylint = "^2.3"
pycodestyle = "^2.5"
mypy = "0.701.0"
pytest-coverage = "^0.0.0"
pylint-django = "^2.0"
django-stubs = "^0.12.1"
pytest-django = "^3.5"
hypothesis = "^4.32"
[tool.black]
line-length = 90
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''