-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
62 lines (56 loc) · 1.24 KB
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
[tool.poetry]
name = "comstock-processor"
version = "0.1.0"
description = "A tool to download and process ComStock data."
authors = ["Nicholas Long <nllong>"]
license = "BSD"
packages = []
[tool.poetry.dependencies]
python = "^3.12"
pandas = ">2"
requests = "~2.32"
pathlib = "^1.0.1"
geopandas = "^1.1.2"
tqdm = "^4.67.1"
seaborn = "^0.13.2"
matplotlib = "^3.10.8"
# although not called directory, these are
# needed for processing parquet files
fastparquet = "^2025.12.0"
pyarrow = "^22.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.2"
pytest-mock = "^3.10.0"
mypy = "^1.19"
pre-commit = "^4.5.1"
ipykernel = "^7.1.0"
jupyter = "^1.1.1"
nbformat = "^5.10.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = "3.8"
files = [
"your_module.py",
"tests/"
]
ignore_missing_imports = true
strict = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = [
"-ra",
"-q",
"--strict-markers",
"--disable-warnings"
]
testpaths = ["tests"]
markers = [
"integration: marks tests as integration tests that download data",
"unit: marks tests as fast unit tests"
]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning"
]