-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 857 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
29
30
31
"""
Setuptools based setup module
"""
from setuptools import find_packages, setup
import versioneer
setup(
name='pyauthenticator',
version=versioneer.get_version(),
description='Similar to the Google authenticator just written in python.',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url='https://github.com/jan-janssen/pyauthenticator',
author='Jan Janssen',
author_email='[email protected]',
license='BSD',
packages=find_packages(exclude=["*tests*"]),
install_requires=[
'pyotp==2.9.0',
'qrcode==8.0',
'pyzbar==0.1.9',
'pillow==11.1.0',
],
cmdclass=versioneer.get_cmdclass(),
entry_points={
"console_scripts": [
'pyauthenticator=pyauthenticator.__main__:command_line_parser'
]
}
)