This repository has been archived by the owner on Aug 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
115 lines (100 loc) · 2.14 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[tool.poetry]
name = "drem"
version = "0.4.0"
description = "https://www.codema.ie/projects/local-projects/dublin-region-energy-master-plan"
authors = ["Rowan Molony <[email protected]>"]
license = "MIT"
repository = "https://github.com/codema-dev/drem"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
pandas = "^1.1.0"
prefect = "^0.13.0"
requests = "^2.24.0"
tqdm = "^4.48.2"
geopandas = "^0.8.1"
icontract = "^2.3.4"
openpyxl = "^3.0.4"
pyarrow = "^1.0.0"
matplotlib = "^3.3.0"
unidecode = "^1.1.1"
descartes = "^1.1.0"
pygeos = "^0.7.1"
validate_email = "^1.3"
dask = {extras = ["dataframe"], version = "^2.26.0"}
seaborn = "^0.11.0"
loguru = "^0.5.3"
bs4 = "^0.0.1"
lxml = "^4.5.2"
html5lib = "^1.1"
jupyter = "^1.0.0"
notebook = "^6.1.4"
jupytext = "^1.6.0"
jupyter-contrib-nbextensions = "^0.5.1"
[tool.poetry.dev-dependencies]
wemake-python-styleguide = "^0.14.1"
pandas-vet = "^0.2.2"
pytest = "^6.0.1"
ipython = "^7.17.0"
ipdb = "^0.13.3"
pyicontract-lint = "^2.0.0"
black = "^19.10b0"
mypy = "^0.782"
pre-commit = "^2.6.0"
seed-isort-config = "^2.2.0"
pytest-cov = "^2.10.0"
pytest-xdist = "^1.34.0"
pdbpp = "^0.10.2"
Pygments = "^2.7.1"
responses = "^0.12.0"
poetry2conda = "^0.3.0"
[tool.poetry.extras]
viz = ["graphviz"]
[tool.isort]
line_length = 88
force_single_line = true
atomic = true
include_trailing_comma = true
lines_after_imports = 2
lines_between_types = 1
multi_line_output = 3
use_parentheses = true
not_skip = "__init__.py"
skip_glob = ["*/setup.py"]
filter_files = true
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| tests/.*/setup.py
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.dephell.main]
from = "pyproject.toml"
to = "setup.py"
[tool.pytest.ini_options]
addopts = "--strict-markers"
markers = [
"e2e: marks end-to-end tests which take longer to run as exercise multiple functions",
]
testpaths = ["tests"]
filterwarnings = [
"error",
"ignore::UserWarning",
"ignore::FutureWarning",
"ignore::PendingDeprecationWarning",
]