-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (29 loc) · 864 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
27
28
29
30
31
32
from setuptools import setup, find_packages
VERSION = '0.0.4'
LONG_DESCRIPTION = open('README.rst').read()
setup(name='lxc4u',
version=VERSION,
description="lxc4u",
long_description=LONG_DESCRIPTION,
keywords='LXC',
author='Reuven V. Gonzales',
author_email='reuven@tobetter.us',
url="https://github.com/ravenac95/lxc4u",
license='MIT',
platforms='Ubuntu',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'overlay4u',
'subwrap',
],
entry_points={},
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Operating System :: POSIX',
'Topic :: Software Development :: Build Tools',
],
)