-
Notifications
You must be signed in to change notification settings - Fork 101
/
pyproject.toml
63 lines (53 loc) · 1.88 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
59
60
61
62
63
[project]
name = "setuptools-rust"
version = "1.10.2"
description = "Setuptools Rust extension plugin"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["distutils", "setuptools", "rust"]
authors = [
]
classifiers = [
"Topic :: Software Development :: Version Control",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
dependencies = [
"setuptools>=62.4",
"semantic_version>=2.8.2,<3",
]
[project.entry-points."distutils.commands"]
clean_rust = "setuptools_rust:clean_rust"
build_rust = "setuptools_rust:build_rust"
[project.entry-points."distutils.setup_keywords"]
rust_extensions = "setuptools_rust.setuptools_ext:rust_extensions"
[project.entry-points."setuptools.finalize_distribution_options"]
setuptools_rust = "setuptools_rust.setuptools_ext:pyprojecttoml_config"
[project.urls]
Homepage = "https://github.com/PyO3/setuptools-rust"
Repository = "https://github.com/PyO3/setuptools-rust"
Documentation = "https://setuptools-rust.readthedocs.io"
Changelog = "https://github.com/PyO3/setuptools-rust/blob/main/CHANGELOG.md"
[build-system]
requires = ["setuptools>=62.4", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.ruff.lint.extend-per-file-ignores]
"__init__.py" = ["F403"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--doctest-modules"
[tool.setuptools]
packages = ["setuptools_rust"]
zip-safe = true
[tool.setuptools.package-data]
setuptools_rust = ["py.typed"]