-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
42 lines (37 loc) · 940 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
[tool.poetry]
name = "cwms-python"
version = "0.5.2"
packages = [
{ include = "cwms" },
]
description = "Corps water managerment systems (CWMS) REST API for Data Retrieval of USACE water data"
readme = "README.md"
license = "LICENSE"
keywords = ["USACE", "water data"]
authors = ["Eric Novotny <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9"
pandas = "^2.1.3"
requests-toolbelt = "^1.0.0"
requests = "^2.31.0"
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
isort = "^5.13.2"
mypy = "^1.9.0"
pre-commit = "^3.6.2"
pytest = "^8.1.1"
requests-mock = "^1.11.0"
pytest-cov = "^4.1.0"
pandas-stubs = "^2.2.1.240316"
types-requests = "^2.31.0.20240311"
yamlfix = "^1.16.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.yamlfix]
comments_min_spaces_from_content = 1
whitelines = 1
explicit_start = false
preserve_quotes = true