-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
72 lines (66 loc) · 1.46 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
[tool.poetry]
name = "cider"
version = "0.1.0"
description = "Poverty prediction and location inference with mobile phone call data records"
authors = ["Emily Aiken, Lucio Melito, Andrew Vaziri"]
[tool.poetry.dependencies]
python = ">=3.8,<3.10"
pandas = "^1.3.3"
numpy = "^1.21.2"
bandicoot = "^0.6.0"
mypy = "^0.910"
pyspark = "^3.1.2"
geopandas = "^0.9.0"
seaborn = "^0.11.2"
matplotlib = "^3.4.3"
rasterio = "^1.2.8"
Shapely = "^1.7.1"
lightgbm = "^3.2.1"
joblib = "^1.0.1"
python-box = "^5.4.1"
wpca = "^0.1"
geovoronoi = "^0.3.0"
pyquadkey2 = "^0.2.0"
PyYAML = "^5.4.1"
scikit-misc = "^0.1.4"
auto-sklearn = "^0.12.0"
autoflake = "^1.4"
pandas-stubs = "^1.2.0"
setuptools = "^58.2.0"
wheel = "^0.37.0"
mxnet = ">=1.7.0, <2.0.0"
Rtree = "^0.9.7"
hashids = "^1.3.1"
[tool.poetry.dev-dependencies]
ipykernel = "^6.4.1"
jupyter = "^1.0.0"
pytest = "^6.2.5"
mypy = "^0.910"
isort = "^5.9.3"
black = "^21.9b0"
pytest-mock = "^3.6.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
check_untyped_defs=true
disallow_incomplete_defs=true
disallow_untyped_defs=true
install_types=true
no_implicit_optional=true
non_interactive=true
show_column_numbers=true
show_error_codes=true
strict_equality=true
warn_unused_ignores=true
warn_redundant_casts=true
warn_unreachable=true
warn_return_any=false
[tool.pytest.ini_options]
addopts = "--strict-markers"
xfail_strict = true
markers_strict = true
markers = [
"unit_test",
"integration_test"
]