-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
31 lines (28 loc) · 962 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
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
setup(
name='Flask-Graylog',
version='1.1.2',
url='https://github.com/underdogio/flask-graylog.git',
license='MIT',
author='Brett Langdon',
author_email='[email protected]',
description='Configure Graylog logging handlers and middleware for your Flask app',
long_description=long_description,
py_modules=['flask_graylog'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=['Flask', 'graypy'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)