Skip to content

Commit a079c96

Browse files
authored
Migrate to pyproject.toml (#673)
1 parent 7939bef commit a079c96

File tree

4 files changed

+43
-42
lines changed

4 files changed

+43
-42
lines changed

.github/workflows/wheel-builder.yml

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ on:
1111
paths:
1212
- .github/workflows/wheel-builder.yml
1313
- setup.py
14-
- setup.cfg
1514
- pyproject.toml
1615

1716

pyproject.toml

+42
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,48 @@ requires = [
99
# disable Pip's fallback guessing
1010
build-backend = "setuptools.build_meta"
1111

12+
[project]
13+
name = "bcrypt"
14+
# When updating this, also update lib.rs
15+
version = "4.0.1"
16+
authors = [
17+
{name = "The Python Cryptographic Authority developers", email = "[email protected]"}
18+
]
19+
description = "Modern password hashing for your software and your servers"
20+
license = {text = "Apache-2.0"}
21+
classifiers = [
22+
"Development Status :: 5 - Production/Stable",
23+
"License :: OSI Approved :: Apache Software License",
24+
"Programming Language :: Python :: Implementation :: CPython",
25+
"Programming Language :: Python :: Implementation :: PyPy",
26+
"Programming Language :: Python :: 3",
27+
"Programming Language :: Python :: 3 :: Only",
28+
"Programming Language :: Python :: 3.7",
29+
"Programming Language :: Python :: 3.8",
30+
"Programming Language :: Python :: 3.9",
31+
"Programming Language :: Python :: 3.10",
32+
"Programming Language :: Python :: 3.11",
33+
"Programming Language :: Python :: 3.12",
34+
]
35+
requires-python = ">= 3.7"
36+
dynamic = ["readme"]
37+
38+
[project.urls]
39+
homepage = "https://github.com/pyca/bcrypt/"
40+
41+
[tool.setuptools]
42+
zip-safe = false
43+
package-dir = {"" = "src"}
44+
packages = ["bcrypt"]
45+
46+
[tool.setuptools.dynamic]
47+
readme = {file = "README.rst", content-type = "text/x-rst"}
48+
49+
[project.optional-dependencies]
50+
tests = ["pytest>=3.2.1,!=3.3.0"]
51+
typecheck = ["mypy"]
52+
53+
1254
[tool.ruff]
1355
ignore = ['N818']
1456
select = ['E', 'F', 'I', 'N', 'W', 'UP', 'RUF']

setup.cfg

-40
This file was deleted.

src/_bcrypt/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ fn _bcrypt(_py: pyo3::Python<'_>, m: &pyo3::types::PyModule) -> pyo3::PyResult<(
182182
m.add("__summary__", "Modern(-ish) password hashing for your software and your servers")?;
183183
m.add("__uri__", "https://github.com/pyca/bcrypt/")?;
184184

185-
// When updating this, also update setup.cfg
185+
// When updating this, also update pyproject.toml
186186
m.add("__version__", "4.0.1")?;
187187

188188
let author = "The Python Cryptographic Authority developers";

0 commit comments

Comments
 (0)