summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg42
1 files changed, 42 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..d6b2eb9
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,42 @@
1[metadata]
2name = pyotp2289
3version = attr: otp2289.__version__
4author = attr: otp2289.__author__
5author_email = sgs@pichove.org
6description = A pure Python implementation of "A One-Time Password System"
7long_description = file: README.md
8long_description_content_type = text/markdown
9url = https://github.com/blackm0re/pyotp2289
10
11classifiers =
12 Development Status :: 5 - Production/Stable
13 Intended Audience :: Developers
14 License :: OSI Approved :: BSD License
15 Programming Language :: Python :: 3
16 Programming Language :: Python :: 3.6
17 Programming Language :: Python :: 3.7
18 Programming Language :: Python :: 3.8
19 Programming Language :: Python :: 3.9
20 Programming Language :: Python :: 3.10
21 Programming Language :: Python :: 3.11
22 Programming Language :: Python :: Implementation
23 Operating System :: OS Independent
24 Topic :: Security :: Cryptography
25
26project_urls =
27 Bug Tracker = https://github.com/blackm0re/pyotp2289/issues
28 Source = https://github.com/blackm0re/pyotp2289
29 API Documentation = https://gnulover.simeonov.no/docs/api/pyotp2289/latest/
30
31[options]
32package_dir =
33 = src
34packages = find:
35python_requires = >=3.6
36
37[options.packages.find]
38where = src
39
40[options.entry_points]
41console_scripts =
42 otp2289 = otp2289.__main__:main