forked from cyrozap/python-vipaccess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (43 loc) · 1.33 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
from setuptools import setup
from io import open
with open('README.rst', encoding='utf-8') as f:
readme = f.read()
setup(
name='python-vipaccess',
version='0.2.0',
description="A free software implementation of Symantec's VIP Access application and protocol",
long_description=readme,
url='https://github.com/cyrozap/python-vipaccess',
author='Forest Crossman',
author_email='cyrozap@gmail.com',
license='Apache 2.0',
classifiers=[
'Development Status :: 3 - Alpha',
'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.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords='development',
packages=['vipaccess'],
install_requires=[
'image',
'lxml',
'oath',
'PyCrypto',
'qrcode',
'requests',
],
entry_points={
'console_scripts': [
'vipaccess=vipaccess.utils:main',
],
},
test_suite='nose.collector',
)