-
Notifications
You must be signed in to change notification settings - Fork 95
/
pyproject.toml
49 lines (45 loc) · 1.55 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
44
45
46
47
48
49
[project]
name = "pykeepass"
# setuptools normalizes semver '-' to '.'
# avoid using hyphens: 1.2.3.post1
version = "4.1.0.post1"
readme = "README.rst"
description = "Python library to interact with keepass databases (supports KDBX3 and KDBX4)"
authors = [
{ name = "Philipp Schmitt", email = "philipp@schmitt.co" },
{ name = "Evan Widloski", email = "evan_gh@widloski.com" }
]
license = {text = "GPL-3.0"}
keywords = ["vault", "keepass"]
requires-python = ">=3.7"
dependencies = [
"pyotp>=2.9.0",
"setuptools; python_version<'3.8'",
"construct>=2.10.53",
"argon2_cffi>=18.1.0",
"pycryptodomex>=3.6.2",
"lxml",
]
classifiers = [
"Topic :: Security",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.optional-dependencies]
test = ["pyotp"]
[project.urls]
Homepage = "https://github.com/libkeepass/pykeepass"
Repository = "https://github.com/libkeepass/pykeepass"
Issues = "https://github.com/libkeepass/pykeepass/issues"
Changelog = "https://github.com/libkeepass/pykeepass/blob/master/CHANGELOG.rst"
[tool.setuptools]
packages = ["pykeepass", "pykeepass.kdbx_parsing"]
include-package-data = true
[build-system]
requires = ["setuptools>=59.0.0"]
build-backend = 'setuptools.build_meta'