-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (47 loc) · 1.42 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
#!/usr/bin/env python
# live-wrapper - Wrapper for vmdebootstrap to create live images
# (C) Iain R. Learmonth 2015 <irl@debian.org>
# See COPYING for terms of usage, modification and redistribution.
#
# setup.py - setuptools script
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'VERSION')) as version_file:
version = version_file.read().strip()
setup(
name='live-wrapper',
version=version,
description='Create a Debian live image based on vmdebootstrap',
author='Iain R. Learmonth',
author_email='irl@debian.org',
url='https://anonscm.debian.org/cgit/debian-live/live-wrapper.git',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Installation/Setup',
],
packages=[
'lwr',
],
package_data={
'live-wrapper': ['README', 'COPYING'],
},
install_requires=[
'cliapp >= 1.20150829',
'vmdebootstrap',
'requests',
'pycurl',
'python-apt'
],
entry_points={
'console_scripts': [
'lwr = lwr.run:main',
],
},
)