forked from humio/python-humio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 812 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
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from setuptools.command.easy_install import easy_install as easy_install
setup(
name="python-humio",
version="0.0.11",
description="Pyhton Humio adapter.",
long_description=open("README.md", 'r').read(),
author="Sergey Grigorev",
author_email="[email protected]",
url="http://humio.com/",
packages=find_packages(),
include_package_data=True,
install_requires=[
'requests>=2,<3',
],
classifiers=[
'Environment :: Any',
'Framework :: Any',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python'
],
cmdclass={
'easy_install': easy_install
}
)