-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (32 loc) · 1.04 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
from setuptools import setup
import os
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
version = "1.0b3"
setup(
version=version,
description="A plugin for ploy providing support for OpenVZ containers.",
long_description=README + "\n\n",
name="ploy_openvz",
author='Florian Schulze',
author_email='[email protected]',
license="BSD 3-Clause License",
url='http://github.com/ployground/ploy_openvz',
classifiers=[
'Environment :: Console',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Systems Administration'],
include_package_data=True,
zip_safe=False,
packages=['ploy_openvz'],
install_requires=[
'setuptools',
'ploy >= 1.0.0, < 2dev',
'lazy'],
entry_points="""
[ploy.plugins]
vz = ploy_openvz:plugin
""")