-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·45 lines (41 loc) · 1.53 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
#!/usr/bin/env python
"""Setup module for ec2metadata"""
# Copyright (c) 2015 SUSE LLC, Robert Schweikert <rjschwei@suse.com>
#
# This file is part of ec2metadata.
#
# ec2metadata is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ec2metadata is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with ec2metadata. If not, see <http://www.gnu.org/licenses/>.
try:
import setuptools
except ImportError:
sys.stderr.write('Python setuptools required, please install.')
sys.exit(1)
version = open('lib/ec2metadata/VERSION').read().strip()
if __name__ == '__main__':
setuptools.setup(
name='ec2metadata',
description=(
'Command-line tool to collect EC2 instance meta data'),
url='https://github.com/SUSE/Enceladus',
license='GPLv3+',
author='Alon Swartz, SUSE',
author_email='alon@turnkeylinux.org, public-cloud-dev@susecloud.net',
version=version,
packages=setuptools.find_packages('lib'),
package_data={'ec2metadata' : ['VERSION']},
package_dir={
'': 'lib',
},
scripts=['ec2metadata']
)