forked from deep-compute/logagg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (41 loc) · 1.17 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
from setuptools import setup
from setuptools import find_packages
setup(
name="logagg",
version="0.3.2",
description="logs aggregation framework",
keywords="logagg",
author="Deep Compute, LLC",
author_email="[email protected]",
url="https://github.com/deep-compute/logagg",
license='MIT',
dependency_links=[
"https://github.com/deep-compute/pygtail/tarball/master/#egg=pygtail-0.6.1",
],
install_requires=[
"basescript==0.2.0",
"pymongo==3.6.0",
"nsq-py==0.1.10",
"influxdb==4.1.1",
"deeputil==0.2.5",
"ujson==1.35",
],
package_dir={'logagg': 'logagg'},
packages=find_packages('.'),
include_package_data=True,
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
],
test_suite='test.suite_maker',
entry_points={
"console_scripts": [
"logagg = logagg:main",
]
}
)