-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.12 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
[project]
name = "epyxid"
description = "Python wrapper around Rust implementation of XID (Globally Unique ID Generator)"
requires-python = ">=3.8"
authors = [
{name = "Aleksandr Shpak", email = "[email protected]"},
]
version = "0.3.3"
readme = "README.md"
license = { file = "LICENSE.txt" }
keywords = [
"rust",
"xid",
"pyo3",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Typing :: Typed",
]
[project.urls]
Repository = "https://github.com/shpaker/epyxid"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
manifest-path = "Cargo.toml"
module-name = "epyxid"
[tool.maturin.target."x86_64-apple-darwin"]
macos-deployment-target = "10.12"
[tool.maturin.target."aarch64-apple-darwin"]
macos-deployment-target = "11.0"