-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 919 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 919 Bytes
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
'''setup module for hostvirtual package'''
from setuptools import setup
VERSION = '0.1'
setup(
name='hostvirtual',
version=VERSION,
install_requires=['requests'],
description='HostVirtual API Client',
long_description=open('README.rst').read().strip(),
url='https://github.com/nsofnetworks/hostvirtual.git',
author='Shmulik Ladkani',
author_email='shmulik@nsof.io',
license=open('LICENSE').read(),
packages=['hostvirtual'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords='hostvirtual netactuate'
)