-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (52 loc) · 1.78 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
58
[build-system]
requires = ["maturin>=1.6,<2.0"]
build-backend = "maturin"
[project]
name = "fastnanoid"
description = "A tiny, secure URL-friendly, and fast unique string ID generator for Python, written in Rust."
readme = "README.md"
authors = [
{ name = "Oliver Lambson", email = "[email protected]" },
{ name = "Ochir Erkhembayar", email = "[email protected]" },
]
maintainers = [{ name = "Oliver Lambson", email = "[email protected]" }]
license = { file = "LICENSE" }
requires-python = ">=3.8"
keywords = ["nanoid"]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Typing :: Typed",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/oliverlambson/fastnanoid"
Issues = "https://github.com/oliverlambson/fastnanoid/issues"
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
module-name = "fastnanoid.fastnanoid"
[tool.pytest.ini_options]
addopts = "--doctest-modules"
testpaths = ["python", "benchmarks", "tests"]
[tool.mypy]
files = ["python/**/*.py", "benchmarks/**/*.py", "tests/**/*.py"]
[tool.ruff]
include = [
"pyproject.toml",
"python/**/*.py",
"benchmarks/**/*.py",
"tests/**/*.py",
]