-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
52 lines (40 loc) · 1.4 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
[tool.poetry]
name = "geohash-hilbert"
version = "2.0.0"
description = "Geohash a lng/lat coordinate using the hilbert curve."
authors = ["Tammo Ippen <tammo.ippen@posteo.de>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tammoippen/geohash-hilbert"
homepage = "https://github.com/tammoippen/geohash-hilbert"
build = "build.py"
include = ["img/*", "tests/*.py"]
keywords = ["geohash", "hilbert", "space filling curve", "geometry"]
classifiers = [
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
coveralls = "*"
cython = "*"
mypy = "*"
pytest = "*"
pytest-benchmark = "*"
pytest-cov = "*"
ruff = "*"
# cython needs distutils, but 3.12 removed it (https://github.com/cython/cython/issues/5751)
setuptools = { version = "*", python = ">=3.12" }
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"