This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
forked from localstack/localstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·77 lines (64 loc) · 2.36 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
#!/usr/bin/env python
from __future__ import print_function
import re
from setuptools import find_packages, setup
# marker for extended/ignored libs in requirements.txt
IGNORED_LIB_MARKER = '#extended-lib'
# parameter variables
install_requires = []
dependency_links = []
package_data = {}
# determine version
with open('localstack/constants.py') as f:
constants = f.read()
version = re.search(r'^\s*VERSION\s*=\s*[\'"](.+)[\'"]\s*$', constants, re.MULTILINE).group(1)
# determine requirements
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 and IGNORED_LIB_MARKER not in line:
install_requires.append(line)
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=version,
description='An easy-to-use test/mocking framework for developing Cloud applications',
author='Waldemar Hummer (Atlassian)',
author_email='waldemar.hummer@gmail.com',
url='https://github.com/localstack/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',
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',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Testing',
]
)