-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
26 lines (22 loc) · 974 Bytes
/
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
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup
version = '0.0.1'
setup(name='pylxc',
description="A python wrapper for Linux Containers (LXC)",
long_description="A python wrapper for LXC commands",
version=version,
url='https://github.com/cloud9ers/pylxc',
author="Cloud Niners Ltd.",
author_email="[email protected]",
packages=['lxc'],
zip_safe=True,
license = "LGPLv3",
classifiers = ['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Systems Administration'],
)