forked from localstack/localstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·104 lines (88 loc) · 3.08 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#!/usr/bin/env python
from __future__ import print_function
import os
import sys
import re
import subprocess
import setuptools
from setuptools import find_packages, setup
from setuptools.command.install_lib import install_lib
install_requires = []
dependency_links = []
package_data = {}
with open('requirements.txt') as f:
requirements = f.read()
for line in re.split('\n', requirements):
if line and line[0] == '#' and '#egg=' in line:
line = re.search(r'#\s*(.*)', line).group(1)
if line and line[0] != '#':
if '://' not in line:
install_requires.append(line)
def do_make_install(workdir=None):
if workdir:
prev_workdir = os.getcwd()
os.chdir(workdir)
try:
subprocess.check_output('make install', shell=True)
except subprocess.CalledProcessError as e:
print(e.output)
raise e
if workdir:
os.chdir(prev_workdir)
class InstallLibCommand(install_lib):
def run(self):
install_lib.run(self)
# prepare filesystem
main_dir_name = 'localstack'
target_dir = '%s/%s' % (self.install_dir, main_dir_name)
infra_dir = '%s/infra' % (main_dir_name)
# delete existing directory
subprocess.check_output('rm -r %s' % (main_dir_name), shell=True)
# create symlink
subprocess.check_output('ln -s %s %s' % (target_dir, main_dir_name), shell=True)
# delete infra directory (if it exists) to force re-install
subprocess.check_output('rm -rf %s' % (infra_dir), shell=True)
# run 'make install'
do_make_install()
package_data = {
'': ['Makefile', '*.md'],
'localstack': [
'package.json',
'dashboard/web/*.*',
'dashboard/web/css/*',
'dashboard/web/img/*',
'dashboard/web/js/*',
'dashboard/web/views/*',
'ext/java/*.*',
'ext/java/src/main/java/com/atlassian/localstack/*.*',
'utils/kinesis/java/com/atlassian/*.*'
]}
if __name__ == '__main__':
setup(
name='localstack',
version='0.6.0',
description='An easy-to-use test/mocking framework for developing Cloud applications',
author='Waldemar Hummer (Atlassian)',
author_email='[email protected]',
url='https://bitbucket.org/atlassian/localstack',
scripts=['bin/localstack'],
packages=find_packages(exclude=("tests", "tests.*")),
package_data=package_data,
install_requires=install_requires,
dependency_links=dependency_links,
test_suite="tests",
license="Apache License 2.0",
cmdclass={
'install_lib': InstallLibCommand
},
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Testing",
]
)