-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
executable file
·40 lines (38 loc) · 1.4 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
38
39
40
#! /usr/bin/env python3
from setuptools import setup, find_packages
setup(
name="canonicalwebteam.flask-base",
version="2.2.0.dev0",
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=[
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.10",
packages=find_packages(),
install_requires=[
"canonicalwebteam.yaml-responses[flask] (>=1,<2)",
"talisker[gunicorn,gevent,flask,prometheus,raven] >= 0.21.4",
"Werkzeug >= 2.3.7",
# Use latest version of Flask once Talisker supports werkzeug >=3
"flask==2.3.3",
"flask-squeeze >= 3.1.0",
],
dependency_links=[],
include_package_data=True,
project_urls={},
)