-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
35 lines (32 loc) · 864 Bytes
/
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
[metadata]
name = kubernetes_wsgi
version = attr: kubernetes_wsgi.__version__
description = A wrapper for running your Python web application using Twisted in a way that works well for Kubernetes.
long_description = file: README.md
license = Apache License 2.0
url = https://github.com/coderanger/kubernetes-wsgi
classifiers =
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
zip_safe = False
include_package_data = True
package_dir =
=src
packages = find:
install_requires =
Twisted
prometheus_client
[options.extras_require]
dev =
pytest
requests
tests =
pytest
requests
[options.packages.find]
where = src