This repository has been archived by the owner on Dec 8, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
37 lines (36 loc) · 1.49 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
#!/usr/bin/env python2.7
from setuptools import setup
setup(
name='vcontrol',
version='0.3.1',
author='Chiraag Prafullchandra',
author_email='[email protected]',
maintainer='Charlie Lewis',
maintainer_email='[email protected]',
description='Vent control layer for managing Vent instances',
long_description=open('README.md').read(),
url='https://github.com/CyberReboot/vcontrol',
packages=['vcontrol', 'vcontrol.cli', 'vcontrol.rest', 'vcontrol.cli.commands',
'vcontrol.cli.commands.plugins', 'vcontrol.cli.machines', 'vcontrol.cli.providers',
'vcontrol.rest.commands', 'vcontrol.rest.commands.plugins', 'vcontrol.rest.helpers',
'vcontrol.rest.machines', 'vcontrol.rest.providers'],
scripts=['bin/vcontrol'],
include_package_data=True,
data_files=[('vcontrol/api', ['api/Dockerfile', 'api/index.html', 'api/swagger-ui.js']),
('vcontrol/docs', ['docs/README.md']),
('vcontrol', ['AUTHORS', 'CHANGELOG.md', 'CONTRIBUTING.md', 'Dockerfile',
'LICENSE', 'Makefile', 'MAINTAINERS', 'README.md']),
('vcontrol/vcontrol', ['vcontrol/requirements.txt', 'vcontrol/swagger.yaml',
'vcontrol/vmware-stats'])],
license='LICENSE',
classifiers=[
'Programming Language :: Python',
'Operating System :: POSIX :: Linux',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Environment :: Other Environment'
],
install_requires=[
'requests',
'web.py'
]
)