Add a setup.py file

This is needed both by PyPI and Tox.
This commit is contained in:
Gergely Polonkai 2017-01-16 11:41:51 +01:00
parent ff40c6fe95
commit 4105934142
2 changed files with 39 additions and 0 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
/docs/_build
__pycache__/
*.pyc
/Flask_Logging_Extras.egg-info/

38
setup.py Normal file
View File

@ -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'
])