forked from vlead/ovpl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (48 loc) · 1.32 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
50
51
52
53
54
55
56
# -*- coding: utf-8 -*-
"""
setup.py
~~~~~~~~
:copyright: (c) 2014, VLEAD. see AUTHORS file for more details.
:license: MIT License, see LICENSE for more details.
"""
"""
OVPL
----
One VM per Lab - An automated deployment environment to deploy labs as web
applications on different kinds of hosting infrastructure.
This project is part of the Virtual Labs project by MHRD, India.
"""
from setuptools import setup
requires = [
'tornado',
'requests',
'pymongo',
'netaddr',
'sh'
]
setup(
name='OVPL',
version='0.1',
url='https://github.com/vlead/ovpl',
license='MIT',
author='VLEAD',
author_email='[email protected]',
description='One-VM-per-Lab: Automated deployment environment',
long_description=__doc__,
#packages=['src', 'config', 'scripts'],
packages=['src'],
zip_safe=False,
platforms='any',
install_requires=requires,
include_package_data=True,
classifiers=[
'Development Status :: 0.1 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: WWW/HTTP :: Automated:: Deployment :: Cloud :: Hosting',
]
)