summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..9edcdac
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,42 @@
1# -*- coding: utf-8 -*-
2
3import setuptools
4
5import otp2289
6
7
8with open('README.md', 'r') as fh:
9 long_description = fh.read()
10
11
12setuptools.setup(
13 name='pyotp2289',
14 version=otp2289.__version__,
15 author=otp2289.__author__,
16 author_email='sgs@pichove.org',
17 description='A pure Python implementation of "A One-Time Password System"',
18 license=otp2289.__license__,
19 long_description=long_description,
20 long_description_content_type='text/markdown',
21 url='https://github.com/blackm0re/pyotp2289',
22 packages=setuptools.find_packages(),
23 exclude_package_data={'': ['.gitignore']},
24 classifiers=[
25 'Development Status :: 5 - Production/Stable',
26 'Intended Audience :: Developers',
27 'License :: OSI Approved :: BSD License',
28 'Programming Language :: Python :: 3 :: Only',
29 'Programming Language :: Python :: 3.6',
30 'Programming Language :: Python :: 3.7',
31 'Programming Language :: Python :: 3.8',
32 'Programming Language :: Python :: Implementation',
33 'Operating System :: OS Independent',
34 'Topic :: Security :: Cryptography'
35 ],
36 keywords='2289 freebsd unix security cryptography otp password',
37 project_urls={
38 'Bug Reports': 'https://github.com/blackm0re/pyotp2289/issues',
39 'Source': 'https://github.com/blackm0re/pyotp2289',
40 },
41 python_requires='>=3.6',
42)