forked from buckhx/QuadKey
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.63 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
53
54
55
56
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyquadkey2"
dynamic = ["version"]
authors = [
{ name = "Ferdinand Mütsch", email = "ferdinand@muetsch.io" },
]
maintainers = [
{ name = "Ferdinand Mütsch", email = "ferdinand@muetsch.io" },
{ name = "CoreJa", email = "i@coreja.com" }
]
description = 'Python implementation of geographical tiling using QuadKeys as proposed by Microsoft'
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Cython',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS',
'Operating System :: Unix',
'Operating System :: POSIX :: Linux',
'Natural Language :: English',
'Topic :: Scientific/Engineering :: GIS',
'Typing :: Typed'
]
readme = "README.md"
requires-python = ">=3.10"
keywords = ['tiling', 'quadkey', 'quadtile', 'geospatial', 'geohash']
license = { file = "LICENSE" }
[project.urls]
'Homepage' = 'https://github.com/muety/pyquadkey2'
'Bug Tracker' = 'https://github.com/muety/pyquadkey2/issues'
'Source Code' = 'https://github.com/muety/pyquadkey2'
'Documentation' = 'https://docs.muetsch.io/pyquadkey2/'
[tool.hatch.build.targets.sdist]
include = ["src/pyquadkey2"]
[tool.hatch.build.targets.wheel]
only-packages = true
artifacts = ["*.so", "*.pyd", "*.dll", "*.dylib"]
[tool.hatch.build.targets.wheel.hooks.cython]
dependencies = ["hatch-cython", "cython"]
options = { compile_py = false }
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
dependencies = ["hatch-vcs"]
version-file = "src/pyquadkey2/_version.py"