-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 878 Bytes
/
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
from setuptools import setup, find_packages
__version__ = "0.3"
setup(
name="zerolog",
version=__version__,
author="TheGhouls",
author_email="[email protected]",
packages=find_packages(),
description="Minimalist and agnostic log aggregation with zeromq from tcp",
url="https://github.com/TheGhouls/zerolog",
keywords=["logging", "logs", "zeromq", "rsyslog"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5"
],
install_requires=[
"pyzmq"
],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-timeout', 'mock'],
entry_points={
'console_scripts': [
'zerolog = zerolog.commands.main:main'
]
}
)