-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
31 lines (28 loc) · 910 Bytes
/
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
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "geohash-py"
description = "Rust-powered library for geohashing, designed for high-performance spatial operations."
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Typing :: Typed",
]
dynamic = ["version"]
authors = [
{name = "Veli Eroglu", email = "[email protected]"},
]
[tool.maturin]
features = ["pyo3/extension-module"]
include = [
{ format = "sdist", path = ".cargo/*" },
{ format = "sdist", path = "build.rs" },
{ format = "sdist", path = "Cargo.lock" },
{ format = "sdist", path = "include/**/*" },
]