-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 671 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 671 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="loggly-python-handler",
version='1.0.0',
description="Python logging handler that sends messages to Loggly",
keywords="loggly logging handler https",
author="psquickitjayant",
author_email="jayantvarshney018@gmail.com",
url="https://github.com/psquickitjayant/loggly-python-handler/",
license="MIT",
packages=find_packages(),
install_requires=[
"requests-futures >= 0.9.4",
],
include_package_data=True,
platform='any',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers'
]
)