-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (26 loc) · 954 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
#!/usr/bin/env python
from setuptools import setup
from os.path import abspath, dirname, join
from codecs import open
here = abspath(dirname(__file__))
long_description = ''
with open(join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='flask_logging_decorator',
version='0.0.5',
description='Simple logging decorator for Flask.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/sgykfjsm/flask-logging-decorator',
author='Shigeyuki Fujishima',
author_email='[email protected]',
python_requires=">=3.5, !=2.*.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
keywords='flask logging decorator',
py_modules=('flask-logging-decorator',),
packages=['flask_logging_decorator']
)