-
Notifications
You must be signed in to change notification settings - Fork 308
/
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 = "dan@arangodb.com" },
{ name = "Eric Veach", email = "ericv@google.com" },
{ name = "Jesse Rosenstock", email = "jmr@google.com" },
{ name = "Julien Basch", email = "julienbasch@google.com" },
{ name = "Mike Playle", email = "mike@mythik.co.uk" },
{ name = "Phil Elson", email = "pelson.pub@gmail.com" },
{ name = "Robert Coup", email = "robert.coup@koordinates.com" },
{ name = "Tiago Brito", email = "tiago.brito@90poe.io" },
{ name = "Zachary Burnett", email = "zachary.r.burnett@gmail.com" },
]
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"