-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 1.09 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
from setuptools import setup, find_packages
setup(
name = 'cc_logger',
packages=find_packages(),
install_requires=[
# can't set this since it'd pick up the pypi version, and we need the one below.
# make sure to pip install -r requirements
# 'logstash_formatter',
],
tests_require=['pytest'],
dependency_links=[
'git+https://github.com/shokunin/python-logstash-formatter.git@3c3d218226#egg=logstash_formatter',
],
version = '0.2.1',
description = 'General logging system to send events and stats the Clearcare way',
author='Brian Zambrano',
author_email='[email protected]',
url='https://github.com/clearcare/cc_logger',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: System :: Distributed Computing',
]
)