-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
49 lines (47 loc) · 1.55 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
from setuptools import setup
from io import open
with open('description.rst', encoding='utf-8') as f:
description = f.read()
setup(
name='python-vipaccess',
version='0.13',
description="A free software implementation of Symantec's VIP Access application and protocol",
long_description=description,
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',
],
entry_points={
'console_scripts': [
'vipaccess=vipaccess.__main__:main',
],
},
test_requires=[
'nose>=1.0',
],
test_suite='nose.collector',
)