-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (43 loc) · 1.22 KB
/
pyproject.toml
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
[tool.poetry]
name = "pyramid_cloudflare_access"
version = "1.0.1"
description = "A bunch of helpers for successfully running Pyramid on Heroku."
readme = "README.rst"
include = [ "CHANGES.rst", "COPYING.txt" ]
classifiers = [
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Framework :: Pylons",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "pyramid_cloudflare_access" },
]
authors = [ "Niteo <[email protected]>" ]
license = "BSD-3-Clause"
homepage = "https://github.com/teamniteo/pyramid_cloudflare_access"
keywords = [ "pyramid", "cloudflare", "pylons", "web" ]
[tool.poetry.dependencies]
python = ">=3.9"
pyramid = ">=1.7, <2.0"
pyjwt = "*"
cryptography = "*"
[tool.poetry.dev-dependencies]
typecov = "*"
pytest-mock = "*"
pytest-cov = "*"
pytest = "*"
mypy = "*"
mock = "*"
isort = "*"
black = "*"
autoflake = "*"
"zope.testing" = "*"
pytest-freezegun = "*"