-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·44 lines (40 loc) · 1.24 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
43
44
#!/usr/bin/python
from os import path
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
README = path.abspath(path.join(path.dirname(__file__), 'README.rst'))
CHANGELOG = path.abspath(path.join(path.dirname(__file__), 'CHANGELOG.rst'))
desc = 'A Python logging handler for Fluentd event collector'
setup(
name='aiofluent',
version='1.2.10.dev0',
description=desc,
long_description=open(README).read() + '\n\n' + open(CHANGELOG).read(),
package_dir={'aiofluent': 'aiofluent'},
packages=['aiofluent'],
install_requires=['msgpack-python'],
author='Nathan Van Gheem',
author_email='vangheem@gmail.com',
url='https://github.com/guillotinaweb/aiofluent',
download_url='http://pypi.python.org/pypi/aiofluent/',
license='Apache License, Version 2.0',
classifiers=[
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
],
extras_require={
'test': [
'pytest>=3.8.0',
'pytest-asyncio>=0.10.0',
'pytest-cov',
'coverage>=4.0.3',
'isort',
'black',
'flake8'
]
},
test_suite='tests'
)