-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (34 loc) · 874 Bytes
/
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
[build-system]
requires = ["maturin>=1,<2"]
build-backend = "maturin"
[project]
name = "rsmime"
version = "0.6.4"
description = "Python package for signing and verifying S/MIME messages"
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Rust",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
]
[project.optional-dependencies]
dev = [
"callee==0.3.1",
"maturin==1.3.1",
"mike==1.1.2",
"mkdocs-autorefs==0.5.0",
"mkdocs-material==9.4.7",
"mkdocstrings[python]==0.23.0",
"pytest==7.4.3",
"ruff==0.1.3",
]
[tool.maturin]
python-source = "python"
include = [
{ path = "**/*.pyi", format = ["sdist", "wheel"] },
]
[tool.ruff.format]
quote-style = "single"