-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.cfg
47 lines (42 loc) · 1.06 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
[metadata]
version = 99.0.0
name = pyramid_jwt
description = JWT authentication policy for Pyramid
long-description = file: README.rst
long-description-content-type = text/x-rst; charset=UTF-8
classifiers =
Intended Audience :: Developers
License :: DFSG approved
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Software Development :: Libraries :: Python Modules
keywords = Pyramid JWT authentication security
author = Wichert Akkerman
author-email = wichert@wiggy.net
home-page = https://github.com/wichert/pyramid_jwt
license = BSD
platforms = any
[options]
zip_safe = True
packages = pyramid_jwt
package_dir = = src
include_package_data = True
install_requires =
pyramid
PyJWT
[options.extras_require]
testing =
WebTest
pytest
pytest-freezegun
[tool:pytest]
testpaths = tests
addopts =
--tb=short
--verbose
[bdist_wheel]
universal=1