-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (44 loc) · 1.02 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
import os
import re
from setuptools import setup
from setuptools import find_packages
tests_require = [
'mock==0.7.2',
'nose==1.1.2',
]
setup(
name='ops',
version=(
re
.compile(r".*__version__ = '(.*?)'", re.S)
.match(open(os.path.join('fabfile', '__init__.py')).read())
.group(1)
),
description='Infrastructure Ops',
author='',
author_email='',
url='https://github.com/balanced/ops',
install_requires=[
'fabric>=1.8,<2.0',
'fabric_rundeck==1.2',
'crontab==0.18',
'requests==2.2.1',
'boto<2.29.0',
'awscli',
],
packages=find_packages(),
tests_require=tests_require,
scripts=[
'scripts/archive_bucketed_logs.py',
'scripts/archive_ossec_logs.py',
'scripts/backup_db.py',
'scripts/check_last_run.py',
'scripts/s3.py',
],
include_package_data=True,
test_suite='nose.collector',
zip_safe=False,
extras_require={
'test': tests_require,
}
)