-
Notifications
You must be signed in to change notification settings - Fork 309
/
pyproject.toml
58 lines (50 loc) · 1.39 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
57
[project]
name = "s2geometry"
description = "Computational geometry and spatial indexing on the sphere"
authors = [
{ name = "Dan Larkin-York", email = "[email protected]" },
{ name = "Eric Veach", email = "[email protected]" },
{ name = "Jesse Rosenstock", email = "[email protected]" },
{ name = "Julien Basch", email = "[email protected]" },
{ name = "Mike Playle", email = "[email protected]" },
{ name = "Phil Elson", email = "[email protected]" },
{ name = "Robert Coup", email = "[email protected]" },
{ name = "Tiago Brito", email = "[email protected]" },
{ name = "Zachary Burnett", email = "[email protected]" },
]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: POSIX",
"License :: OSI Approved :: Apache Software License",
]
dynamic = [
"version",
]
[project.license]
file = "LICENSE"
content-type = "text/plain"
[project.urls]
Source = "https://github.com/google/s2geometry"
[project.optional-dependencies]
test = [
"pytest",
]
[build-system]
requires = [
"wheel",
"setuptools",
"setuptools_scm[toml]",
"cmake_build_extension",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = false
include-package-data = false
[tool.setuptools.packages.find]
where = [
"src",
]
namespaces = false
[tool.setuptools.package-dir]
"" = "src"