forked from cyrozap/python-vipaccess
-
Notifications
You must be signed in to change notification settings - Fork 84
/
setup.py
executable file
·54 lines (51 loc) · 1.73 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
53
54
#!/usr/bin/env python3
from setuptools import setup
from io import open
from os import path
version_py = path.join('vipaccess', 'version.py')
d = {}
with open(version_py, 'r') as fh:
exec(fh.read(), d)
version_pep = d['__version__']
setup(
name='python-vipaccess',
version=version_pep,
description="A free software implementation of Symantec's VIP Access application and protocol",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/dlenski/python-vipaccess',
author='Daniel Lenski',
author_email='dlenski@gmail.com',
license='Apache 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='development',
packages=['vipaccess'],
install_requires=[
# verify consistency with requirements.txt
'pycryptodome>=3.6.6',
'oath>=1.4.1',
'requests',
],
extras_require={"qr": ["qrcode"]},
entry_points={
'console_scripts': [
'vipaccess=vipaccess.__main__:main',
],
},
test_suite='nose2.collector.collector',
)