-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.cfg
96 lines (89 loc) · 2.68 KB
/
setup.cfg
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[aliases]
test = pytest
[flake8]
exclude = .*,env,lib,dist,build,tests/django_app
ignore = E402,W503
[tool:pytest]
testpaths = tests docs
norecursedirs = django_app
# pytest-postgresql gets confused in travis env, which also has pg 10 installed
postgresql_exec = /usr/lib/postgresql/9.5/bin/pg_ctl
filterwarnings = ignore
[metadata]
name = talisker
version = 0.21.5
description = A common WSGI stack
long_description = file: README.rst
author = Simon Davy
author_email = [email protected]
url = https://github.com/canonical-ols/talisker
keywords = talisker
classifiers =
License :: OSI Approved :: Apache Software License
Development Status :: 4 - Beta
Intended Audience :: Developers
Natural Language :: English
Topic :: Internet :: WWW/HTTP :: WSGI
Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
Topic :: System :: Logging
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
[options]
zip_safe = False
include_package_data = True
packages = talisker
test_suite = tests
package_dir = talisker=talisker
install_requires =
Werkzeug~=1.0;python_version~="3.5.0"
Werkzeug<3;python_version>="3.6"
statsd~=3.3;python_version~="3.5.0"
statsd<4;python_version>="3.6"
requests~=2.25;python_version~="3.5.0"
requests<3.0;python_version>"3.5"
contextvars~=2.4;python_version>="3.5" and python_version<"3.7"
[options.extras_require]
gunicorn =
gunicorn>=19.7.0;python_version>"3.6"
gunicorn==19.7.0,<21.0;python_version>="3.5" and python_version<"3.8"
raven = raven>=6.4.0
celery =
celery~=4.4;python_version~="3.5.0"
celery>=4;python_version>"3.5"
django =
django~=2.2;python_version~="3.5.0"
django<5;python_version>"3.5"
prometheus =
prometheus-client~=0.7.0;python_version~="3.5.0"
prometheus-client<0.8;python_version>"3.5"
flask =
flask~=1.1;python_version~="3.5.0"
flask<3;python_version>"3.5"
blinker~=1.5;python_version~="3.5.0"
blinker<2;python_version>"3.5"
dev =
logging_tree>=1.9
pygments>=2.11
psutil>=5.9
objgraph>=3.5
pg =
sqlparse>=0.4.2
psycopg2>=2.8,<3.0
asyncio =
aiocontextvars==0.2.2;python_version>="3.5.3" and python_version<"3.7"
gevent = gevent>=20.9.0
[options.package_data]
talisker = logstash/*
[options.entry_points]
console_scripts =
talisker=talisker:run_gunicorn[gunicorn]
talisker.run=talisker:run
talisker.gunicorn=talisker:run_gunicorn[gunicorn]
talisker.gunicorn.eventlet=talisker:run_gunicorn_eventlet[gunicorn]
talisker.gunicorn.gevent=talisker:run_gunicorn_gevent[gunicorn]
talisker.celery=talisker:run_celery[celery]
talisker.help=talisker:run_help