This repository was archived by the owner on Jul 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
executable file
·53 lines (51 loc) · 1.75 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
from setuptools import setup, find_packages
import os
setup(
name='tgt_grease',
version='2.6.1',
license="MIT",
description='Modern distributed automation engine built with love by Target',
long_description="""
GREASE is a general purpose distributed automation engine designed to scale to enterprise workloads. We utilize
MongoDB and a plugin architecture to enable broad automation possibilities via one common core of primitives and
services.
""",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Topic :: System',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Operating System :: Microsoft :: Windows :: Windows 8',
'Operating System :: Microsoft :: Windows :: Windows 8.1',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: POSIX'
],
keywords='python automated recovery',
author='James E. Bell Jr.',
author_email="[email protected]",
packages=find_packages(),
test_suite='nose.collector',
tests_require=['nose', 'nose-cover3', 'mock'],
install_requires=[
'urllib3==1.24.3',
'psycopg2-binary',
'requests',
'pymongo',
'psutil',
'elasticsearch',
'kafka-python'
] + (
["pywin32"] if "nt" == os.name else []
),
include_package_data=True,
zip_safe=False,
scripts=[
'bin/grease',
'bin/grease.ps1'
]
)