From 4105934142ac34e5a81649cc1d5de1bec40b6377 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 16 Jan 2017 11:41:51 +0100 Subject: [PATCH] Add a setup.py file This is needed both by PyPI and Tox. --- .gitignore | 1 + setup.py | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 setup.py diff --git a/.gitignore b/.gitignore index dc0133a..6e1901d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /docs/_build __pycache__/ *.pyc +/Flask_Logging_Extras.egg-info/ diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..637d462 --- /dev/null +++ b/setup.py @@ -0,0 +1,38 @@ +""" +Flask-Logging-Extras +------------------- + +Flask-Logging-Extras provides extra logging functionality for Flask apps. +""" + +from setuptools import setup + +setup(name='Flask-Logging-Extras', + version='0.0.1', + url='https://github.com/gergelypolonkai/flask-logging-extras', + license='BSD', + author='Gergely Polonkai', + author_email='gergely@polonkai.eu', + description='Extra logging functionality for Flask apps', + long_description='Extra logging functionality for Flask apps.', + keywords = ['flask', 'logging'], + packages=['flask_logging_extras'], + zip_safe=False, + platforms='any', + install_requires=['Flask'], + classifiers=[ + 'Development Status :: 4 - Beta', + 'Environment :: Web Environment', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', + 'Topic :: Software Development :: Libraries :: Python Modules' + ])