|
| 1 | +[project] |
| 2 | +name = "PyOTP" |
| 3 | +description = "Python One Time Password Library" |
| 4 | +readme = "README.rst" |
| 5 | +requires-python = ">=3.8" |
| 6 | +license = { text = "MIT License" } |
| 7 | +authors = [{ name = "Andrey Kislyuk"}, { email = "[email protected]" }] |
| 8 | +maintainers = [{ name = "Andrey Kislyuk"}, { email = "[email protected]" }] |
| 9 | +dynamic = ["version"] |
| 10 | +classifiers = [ |
| 11 | + "Intended Audience :: Developers", |
| 12 | + "License :: OSI Approved :: Apache Software License", |
| 13 | + "Operating System :: MacOS :: MacOS X", |
| 14 | + "Operating System :: POSIX", |
| 15 | + "Programming Language :: Python", |
| 16 | + "Programming Language :: Python :: 3", |
| 17 | + "Programming Language :: Python :: 3.8", |
| 18 | + "Programming Language :: Python :: 3.9", |
| 19 | + "Programming Language :: Python :: 3.10", |
| 20 | + "Programming Language :: Python :: 3.11", |
| 21 | + "Programming Language :: Python :: 3.12", |
| 22 | + "Programming Language :: Python :: 3.13", |
| 23 | + "Programming Language :: Python :: Implementation :: CPython", |
| 24 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 25 | + "Development Status :: 5 - Production/Stable", |
| 26 | + "Topic :: Software Development", |
| 27 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 28 | +] |
| 29 | + |
| 30 | +[project.optional-dependencies] |
| 31 | +test = ["coverage", "wheel", "ruff", "mypy"] |
| 32 | + |
| 33 | +[project.urls] |
| 34 | +"Homepage"= "https://github.com/pyauth/pyotp" |
| 35 | +"Documentation"= "https://github.com/pyauth/pyotp" |
| 36 | +"Source Code"= "https://github.com/pyauth/pyotp" |
| 37 | +"Issue Tracker"= "https://github.com/pyauth/pyotp/issues" |
| 38 | +"Change Log"= "https://github.com/pyauth/pyotp/blob/main/Changes.rst" |
| 39 | + |
| 40 | +[build-system] |
| 41 | +requires = ["hatchling", "hatch-vcs"] |
| 42 | +build-backend = "hatchling.build" |
| 43 | + |
| 44 | +[tool.hatch.version] |
| 45 | +source = "vcs" |
| 46 | + |
1 | 47 | [tool.black] |
2 | 48 | line-length = 120 |
3 | 49 |
|
|
0 commit comments