forked from canonical/canonicalwebteam.flask-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·37 lines (35 loc) · 1.14 KB
/
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
32
33
34
35
36
37
#! /usr/bin/env python3
from setuptools import setup, find_packages
setup(
name="canonicalwebteam.flask-base",
version="1.1.0",
description=(
"Flask extension that applies common configurations"
"to all of webteam's flask apps."
),
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Canonical webteam",
author_email="[email protected]",
url="https://github.com/canonical-web-and-design/canonicalwebteam.flask-base",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
packages=find_packages(),
install_requires=[
"canonicalwebteam.yaml-responses[flask] (>=1,<2)",
"flask==1.1.2",
"jinja2 (>=3,<3.1.0)",
"gevent==21.12.0",
"greenlet==1.1.2",
"talisker[gunicorn,gevent,flask,prometheus,raven]",
"Werkzeug (>=1.0.0, <1.2)",
"markupsafe >= 1.0, < 2.1.0",
"itsdangerous >= 0.24, < 2.0",
],
dependency_links=[],
include_package_data=True,
project_urls={},
)