-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
48 lines (45 loc) · 1.03 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
[tool.poetry]
authors = ["Joao Carabetta <[email protected]>"]
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
]
description = "A common python API to work with different established grid systems."
homepage = "https://github.com/EL-BID/BabelGrid"
license = "AM-331-A3 Licencia de Software"
name = "babelgrid"
readme = "README.md"
repository = "https://github.com/EL-BID/BabelGrid"
version = "0.1.3"
[tool.poetry.dependencies]
h3 = '3.6.3'
pygeotile = "*"
pyproj = '3.6.1'
python = "^3.7"
s2sphere = '0.2.5'
shapely = '1.7.0'
[tool.poetry.dev-dependencies]
h3 = '3.6.3'
pygeotile = "*"
python = "^3.7"
s2sphere = '0.2.5'
shapely = '1.7.0'
[tool.black]
# Use the more relaxed max line length permitted in PEP8.
exclude = '''
/(
\.eggs
| \.git
| \.mypy_cache
| \.tox
| \venv
| build
| dist
| htmlcov
)/
'''
line-length = 88
target-version = ["py36", "py37", "py38"]
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]