summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py50
1 files changed, 0 insertions, 50 deletions
diff --git a/setup.py b/setup.py
deleted file mode 100644
index 875d966..0000000
--- a/setup.py
+++ /dev/null
@@ -1,50 +0,0 @@
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 entry_points={
25 'console_scripts': [
26 'otp2289=otp2289.__main__:main',
27 ],
28 },
29 classifiers=[
30 'Development Status :: 5 - Production/Stable',
31 'Intended Audience :: Developers',
32 'License :: OSI Approved :: BSD License',
33 'Programming Language :: Python :: 3 :: Only',
34 'Programming Language :: Python :: 3.6',
35 'Programming Language :: Python :: 3.7',
36 'Programming Language :: Python :: 3.8',
37 'Programming Language :: Python :: 3.9',
38 'Programming Language :: Python :: Implementation',
39 'Operating System :: OS Independent',
40 'Topic :: Security :: Cryptography'
41 ],
42 keywords='2289 freebsd unix security cryptography otp password',
43 project_urls={
44 'Bug Reports': 'https://github.com/blackm0re/pyotp2289/issues',
45 'Source': 'https://github.com/blackm0re/pyotp2289',
46 'API Documentation': (
47 'http://gnulover.simeonov.no/docs/api/pyotp2289/latest/')
48 },
49 python_requires='>=3.6',
50)