-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (36 loc) · 1.2 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "py2fa-cli"
dynamic = ["version"]
dependencies = ["pyotp", "pyxdg"]
requires-python = ">=3.7"
authors = [{ name = "arcctgx", email = "arcctgx@o2.pl" }]
description = "Command-line application for calculating one-time passwords for 2FA."
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "GPLv3" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
]
[project.scripts]
py2fa = "py2fa.py2fa:main"
[project.urls]
Homepage = "https://github.com/arcctgx/py2fa-cli"
Issues = "https://github.com/arcctgx/py2fa-cli/issues"
[tool.setuptools.dynamic]
version = { attr = "py2fa.VERSION" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.pylint.basic]
# Do not require docstrings for functions whose names begin with
# underscores, or for main().
no-docstring-rgx = "^(_|main$)"
[tool.yapf]
based_on_style = "pep8"
column_limit = 100