File: pyproject.toml

package info (click to toggle)
python-setuptools-rust 1.9.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 648 kB
  • sloc: python: 1,703; javascript: 95; sh: 14; makefile: 13
file content (63 lines) | stat: -rw-r--r-- 1,941 bytes parent folder | download
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.9.0"
description = "Setuptools Rust extension plugin"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["distutils", "setuptools", "rust"]
authors = [
    {name = "Nikolay Kim", email = "fafhrd91@gmail.com"},
]
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 = [
    "semantic_version>=2.8.2,<3",
    'tomli>=1.2.1; python_version<"3.11"'
]

[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.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"]