-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 1.01 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
[tool.poetry]
name = "altmo"
version = "0.1.2"
description = "Tools for mapping walkability and bikeability using Open Street Map data"
authors = ["Travis Hathaway <[email protected]>"]
license = "GPLv3"
readme = 'README.md'
homepage = 'https://altmo.readthedocs.io'
documentation = 'https://altmo.readthedocs.io'
repository = 'https://github.com/travishathaway/altmo'
keywords = ['OpenStreetMap', 'GIS']
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.25.1"
psycopg2 = "^2.8.6"
click = "^8.0.1"
tqdm = "^4.61.0"
PyYAML = "^6.0"
aiopg = "^1.3.3"
aiohttp = "^3.8.1"
aiofiles = "^0.8.0"
aiocsv = "^1.2.1"
pygdal = { version = "3.2.1.10", optional = true }
[tool.poetry.extras]
raster = ["pygdal"]
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
Sphinx = "^4.3.1"
recommonmark = "^0.7.1"
pytest-mock = "^3.6.1"
pytest-cov = "^3.0.0"
flake8 = "^4.0.1"
black = "^21.12b0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
altmo = 'altmo.main:cli'