@@ -9,6 +9,48 @@ requires = [
9
9
# disable Pip's fallback guessing
10
10
build-backend = " setuptools.build_meta"
11
11
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
+
12
54
[tool .ruff ]
13
55
ignore = [' N818' ]
14
56
select = [' E' , ' F' , ' I' , ' N' , ' W' , ' UP' , ' RUF' ]
0 commit comments