-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.81 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
54
55
56
57
58
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pwnedpasswords"
version = "3.1.0"
description = "A Python wrapper for Troy Hunt's Pwned Passwords API."
readme = "README.md"
requires-python = ">=3.5"
license = {text = "Apache-2.0"}
keywords = ["passwords", "security"]
authors = [
{name = "Dan Loewenherz", email = "dan@lionheartsw.com"}
]
maintainers = [
{name = "Dan Loewenherz", email = "dan@lionheartsw.com"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
dependencies = []
[project.optional-dependencies]
dev = ["build", "twine"]
test = ["nose"]
[project.urls]
Homepage = "https://github.com/lionheart/pwnedpasswords"
Repository = "https://github.com/lionheart/pwnedpasswords"
Download = "https://github.com/lionheart/pwnedpasswords/tarball/3.1.0"
[project.scripts]
pwnedpasswords = "pwnedpasswords.__main__:main"
[tool.setuptools]
packages = ["pwnedpasswords"]
[tool.setuptools.package-data]
"*" = ["LICENSE", "README.rst"]