-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 874 Bytes
/
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
#!/usr/bin/python
# -*- coding: utf-8
from setuptools import setup, find_packages
pkg_vars = dict()
with open("otp/_version.py") as fp:
exec(fp.read(), pkg_vars)
setup(
name='otp-py',
version=pkg_vars['__version__'],
author='Selçuk Karakayalı',
author_email='[email protected]',
maintainer='Selçuk Karakayalı',
url='https://github.com/karakays/otp-py/',
packages=find_packages(),
install_requires=['pyqrcode>=1.2.1', 'pyperclip'],
python_requires='>=3.7',
license='MIT',
keywords=['otp', 'otp-codes', 'otp-generator', 'authenticator'],
description='Generate one time passwords',
long_description=open('README.rst').read(),
scripts=['bin/otp'],
classifiers=[ "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License"]
)