-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (33 loc) · 1.06 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
[tool.poetry]
name = "pygeojson"
version = "0.2.0"
description = "GeoJSON library for Python with types"
authors = ["Håkon Åmdal <[email protected]>"]
maintainers = ["Håkon Åmdal <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/hawkaa/pygeojson"
repository = "https://github.com/hawkaa/pygeojson"
documentation = "https://github.com/hawkaa/pygeojson"
keywords = ["geojson", "typed", "dataclasses", "immutable"]
classifiers = [
"Typing :: Typed",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development :: Libraries",
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
pytest = "^5.4.2"
black = "^19.10b0"
mypy = "^0.770"
python-semantic-release = "^7.1.1"
[tool.semantic_release]
version_variable = "pygeojson/__init__.py:__version__"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"