-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (41 loc) · 1 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
[tool.poetry]
name = "measure"
version = "0.1.0"
description = "Quantify and categorize city bike networks"
authors = ["Rémy Greinhofer <[email protected]>","Luis Alvergue <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^1.4.1"
geopandas = "^0.10.2"
pydantic = "^1.9.0"
jupyterlab = "^3.3.2"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
bpython = "^0.22.1"
flake8 = "^4.0.1"
furo = "^2022.2.14"
invoke = "^1.6.0"
isort = "^5.10.1"
myst-parser = "^0.17.0"
pydocstyle = "^6.1.1"
pylint = "^2.12.2"
pytest = "^7.0.1"
pytest-cov = "^3.0.0"
pytest-mock = "^3.7.0"
pytest-rerunfailures = "^10.2"
pytest-socket = "^0.5.1"
pytest-xdist = "^2.5.0"
Sphinx = "^4.4.0"
sphinx-autobuild = "^2021.3.14"
sphinx-copybutton = "^0.5.0"
xdoctest = "^0.15.10"
nbstripout = "^0.5.0"
[tool.isort]
profile = "black"
force_single_line = "true"
[tool.pytest.ini_options]
addopts = "-p no:warnings"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"