-
Notifications
You must be signed in to change notification settings - Fork 88
/
setup.py
48 lines (41 loc) · 1.34 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import setuptools
def long_desc():
readme = open('README.md').read()
i = readme.index('[')
j = readme.index('\nIntroduction')
k = readme.index('\n\nSource Code')
m = readme.index('\n\nResources')
n = readme.index('\n\nLicense')
return readme[:i] + readme[j:k] + readme[m:n]
setuptools.setup(
name='mintotp',
version='0.3.0',
author='Susam Pal',
author_email='[email protected]',
description='MinTOTP - Minimal TOTP Generator',
long_description=long_desc(),
long_description_content_type='text/markdown',
url='https://github.com/susam/mintotp',
license='MIT',
py_modules=['mintotp'],
entry_points={
'console_scripts': {
'mintotp = mintotp:main'
}
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: Security :: Cryptography',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
],
keywords='totp hotp otp hmac cryptography 2fa authenticator',
)