-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
45 lines (43 loc) · 1.18 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_heroku"
version = "0.10.6"
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_heroku" },
]
authors = [ "Niteo <[email protected]>" ]
license = "BSD-3-Clause"
homepage = "https://github.com/teamniteo/pyramid_heroku"
keywords = [ "pyramid", "heroku", "pylons", "web" ]
[tool.poetry.dependencies]
python = ">=3.6"
expandvars = "*"
requests = "*"
pyramid = ">=1.7"
[tool.poetry.dev-dependencies]
black = "==18.9b0"
docutils = "*"
mock = "*"
mypy = "*"
pytest = "*"
responses = "*"
structlog = "*"
typecov = "*"
"zope.testing" = "*"
pytest-cov = "^2.8.1"
isort = "^4.3.21"