-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1.01 KB
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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "pyofiles"
version = "0.5.0"
description = "Fast, Rust-powered file operations for Python"
requires-python = ">=3.9"
license = "MIT"
readme = "README.md"
keywords = ["files", "filesystem", "rust", "fast", "parallel", "walk", "find", "glob", "cli"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Rust",
"Topic :: System :: Filesystems",
]
[project.scripts]
pyofiles = "pyofiles.cli:main"
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
[tool.semantic_release]
version_toml = [
"pyproject.toml:project.version",
"Cargo.toml:package.version",
]
tag_format = "v{version}"
commit_message = "chore(release): v{version}"
[dependency-groups]
dev = [
"maturin>=1.12.6",
]