-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
52 lines (49 loc) · 1.44 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
49
50
51
52
from os import path
from setuptools import find_packages, setup
current_dir = path.abspath(path.dirname(__file__))
with open(path.join(current_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='google-yubikey',
author='Denis Loginov',
description='Generate Google Service Account tokens with your YubiKey',
long_description=long_description,
long_description_content_type='text/markdown',
license='BSD 3-clause "New" or "Revised" License',
url='https://github.com/dinvlad/google-yubikey',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Security',
'Topic :: Security :: Cryptography',
'Topic :: Utilities',
],
python_requires='>=3.7.0',
packages=find_packages(
exclude=[
'tests',
],
),
setup_requires=[
'setuptools_scm',
],
use_scm_version={
'root': '.',
'relative_to': __file__,
},
install_requires=[
'flask >= 1.1.2',
'python-hosts >= 1.0.0',
'requests >= 2.24.0',
'six >= 1.15.0',
'uwsgi >= 2.0.19.1',
'yubikey-manager >= 3.1.1',
],
entry_points={
'console_scripts': [
'google-yubikey = google_yubikey.__main__:main',
],
},
)