forked from matalo33/py_oathtool
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
33 lines (28 loc) · 885 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
[project]
authors = [{ name="Matthew Taylor", email="matthew@m-taylor.co.uk" }]
description = "A Python script for generating OTP codes"
name = "py_oathtool2"
readme = "README.md"
requires-python = ">=3.8"
version = "1.3.0"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
dependencies = [
"oathtool",
"pyaml",
]
[project.urls]
Homepage = "/~https://github.com/shanet/py_oathtool"
Issues = "/~https://github.com/shanet/py_oathtool/issues"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0"]
[project.scripts]
otp = "py_oathtool2.otp:main"