-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.45 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "anot"
description = "Extract @annotations from source code comments"
authors = [
{ name = "Rory Byrne", email = "[email protected]" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Intended Audience :: Developers",
'Intended Audience :: Information Technology',
"Typing :: Typed",
]
license = "MIT"
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = [
"maturin>=1.7.8",
]
[project.urls]
Homepage = "https://github.com/flywhl/anot"
Repository = "https://github.com/flywhl/anot"
Documentation = "https://github.com/flywhl/anot#readme"
"Bug Tracker" = "https://github.com/flywhl/anot/issues"
[project.scripts]
anot = "anot.__init__:main"
[tool.maturin]
python-source = "python"
module-name = "anot._anot"
bindings = 'pyo3'
features = ["pyo3/extension-module"]
[tool.uv]
# this ensures that `uv run` doesn't actually build the package; a `make`
# command is needed to build
package = false