diff options
| author | Simeon Simeonov | 2020-04-03 00:00:52 +0200 |
|---|---|---|
| committer | Simeon Simeonov | 2020-04-03 00:00:52 +0200 |
| commit | 097aaa49fa99cffec9db74432d7025457c34199e (patch) | |
| tree | 1af3ab2ec494b71610d299468c818f7ac144ce59 /setup.py | |
| parent | 2a6299c32e0baf3df06f8e6d6bc8695b951d630d (diff) | |
Implement OTPStore container class in the server module
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 42 |
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 | |||
| 3 | import setuptools | ||
| 4 | |||
| 5 | import otp2289 | ||
| 6 | |||
| 7 | |||
| 8 | with open('README.md', 'r') as fh: | ||
| 9 | long_description = fh.read() | ||
| 10 | |||
| 11 | |||
| 12 | setuptools.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 | ) | ||
