-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·23 lines (21 loc) · 839 Bytes
/
setup.py
File metadata and controls
executable file
·23 lines (21 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
import setuptools
setuptools.setup(
name = 'VscApiClient',
version = '0.7.0',
description = 'Client for VSC Core HTTP API',
author = 'Aleksey Morarash',
author_email = 'aleksey.morarash@massivesolutions.eu',
packages = ['VscApiClient'],
provides = ['VscApiClient'],
requires = ['ipaddr', 'dns'],
include_package_data = True,
zip_safe = True,
license = 'GPL-2+',
platforms = 'Platform Independent',
classifiers = ['Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Natural Language :: English',
'Topic :: Software Development'])