-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 1.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatchling.build.targets.wheel]
packages = ["src/hibp_py"]
[project]
name = "hibp-py"
version = "1.2.7"
dependencies = ["python-dotenv", "requests"]
authors = [{ name = "Pavel Sushko", email = "github@psushko.com" }]
description = "Python utility for Have I Been Pwned API"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
homepage = "https://github.com/Pavel-Sushko/hibp-py"
issues = "https://github.com/Pavel-Sushko/hibp-py/issues"
[project.scripts]
hibp-py = "hibp_py:main"