-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 977 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, find_packages
with open("README.md", "r") as output:
long_description = output.read()
__VERSION__ = "0.2.1"
setup(
name="flask_google_cloud_logger",
version=__VERSION__,
description="Google Cloud Log Formatter for Flask",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/rai200890/flask_google_cloud_logger",
author="Raissa Ferreira",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
install_requires=[
"google_cloud_logger>=0.2.1",
"flask>=1.0",
],
classifiers=[
"Environment :: Web Environment", "Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English", "Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: System :: Logging"
],
zip_safe=False)