-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 996 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
33
34
from setuptools import setup
import sys
if sys.version_info[0] != 2 or sys.version_info[1] < 7:
raise Exception('This package requires Python 2.7')
req = [
'boto',
'PyGithub>=1.25',
]
scripts = [
'omi-factory=outscale_image_factory.main:main',
'cleanup=outscale_image_factory.cleanup:main',
'find_package_references=outscale_image_factory.find_package_references:main',
'tklgit=outscale_image_factory.tklgit:main',
'create_fstab=outscale_image_factory.create_fstab:main',
'create_sources_list=outscale_image_factory.create_sources_list:main',
]
setup(
name='outscale_image_factory',
version='0.1',
description='Tools used to generate images for the Outscale cloud',
url='http://github.com/nodalink/outscale-image-factory',
author='Vincent Crevot',
author_email=None,
license='BSD',
packages=['outscale_image_factory'],
zip_safe=False,
entry_points=dict(console_scripts=scripts),
install_requires=req,
)