This repository was archived by the owner on Oct 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
53 lines (47 loc) · 1.36 KB
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
[project]
name = "emmett-crypto"
authors = [
{name = "Giovanni Barillari", email = "g@baro.dev"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python",
"Programming Language :: Rust",
"Topic :: Security :: Cryptography"
]
dynamic = [
"description",
"keywords",
"license",
"readme",
"version"
]
requires-python = ">=3.8"
dependencies = []
[project.optional-dependencies]
test = [
"pytest~=7.4.0"
]
[project.urls]
Homepage = "https://emmett.sh"
Funding = "https://github.com/sponsors/gi0baro"
Source = "https://github.com/emmett-framework/crypto"
[build-system]
requires = ["maturin>=1.1.0,<2"]
build-backend = "maturin"
[tool.maturin]
module-name = "emmett_crypto._crypto"
bindings = "pyo3"