-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
43 lines (38 loc) · 1.36 KB
/
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
39
40
41
42
43
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "SecretStorage"
version = "3.3.3"
description = "Python bindings to FreeDesktop.org Secret Service API"
authors = [{name = "Dmitry Shachnev", email = "[email protected]"}]
license = {text = "BSD 3-Clause License"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.9"
dependencies = ["cryptography>=2.0", "jeepney>=0.6"]
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.urls]
Homepage = "https://github.com/mitya57/secretstorage"
Documentation = "https://secretstorage.readthedocs.io/en/latest/"
"Issue Tracker" = "https://github.com/mitya57/secretstorage/issues/"
[tool.setuptools]
packages = ["secretstorage"]
platforms = ["Linux"]
include-package-data = false
[tool.setuptools.package-data]
secretstorage = ["py.typed"]