forked from internetofwater/nldi-crawler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
69 lines (59 loc) · 1.51 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
[tool.poetry]
name = "nldi-crawler"
version = "0.2.0"
description = ""
authors = ["g.trantham <[email protected]>"]
readme = "README.md"
packages = [{include = "nldi_crawler", from = "src"}]
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.3"
sqlalchemy = "^2.0.9"
pandas = "^1.5.2"
httpx = "^0.23.1"
ijson = "^3.1.4"
geoalchemy2 = "^0.13.1"
shapely = "^2.0.0"
psycopg = "^3.1.7"
psycopg-binary = "^3.1.8"
psycopg2-binary = "^2.9.5"
pydantic = "^1.10.7"
[tool.poetry.scripts]
nldi-cli = "nldi_crawler.cli:main"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
coverage = {extras = ["toml"], version = "^6.5.0"}
pytest-cov = "^4.0.0"
black = "^22.12.0"
pylint = "^2.15.8"
mypy = "^0.991"
sphinx = "^5.3.0"
myst-parser = "^0.18.1"
sphinx-autodoc-typehints = "^1.19.5"
ghp-import = "^2.1.0"
sphinx-rtd-theme = "^1.1.1"
sphinxcontrib-mermaid = "^0.7.1"
ipykernel = "^6.19.2"
pytest-postgresql = "^4.1.1"
pytest-httpx = "^0.21.2"
pytest-sugar = "^0.9.7"
pytest-order = "^1.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["nldi_crawler"]
[tool.coverage.report]
show_missing = true
[tool.black]
line-length = 100
[tool.pytest.ini_options]
addopts = "--tb=short -p no:warnings"
markers = [
"legacy: original tests from the old country",
"order: sets the order of the tests",
"integration: integration tests which depend on external data or infrastructure",
]