forked from gothinkster/realworld-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
87 lines (82 loc) · 1.86 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
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
[tool.poetry]
name = "conduit"
version = "0.1.0"
description = "Pyramid and OpenAPI3 based RealWorld.io example."
authors = ["niteo.co <[email protected]>"]
license = "MIT"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"License :: MIT",
]
homepage = "http://github.com/teamniteo/pyramid-realworld-example-app"
keywords = ["pyramid", "openapi", "realworld"]
packages = [
{ include = "conduit", from = "src" },
]
[tool.poetry.plugins."paste.app_factory"]
main = "conduit:main"
test_suite = "conduit"
[tool.poetry.dependencies]
python = "~3.8"
argon2-cffi = "*"
gunicorn = "*"
mypy_extensions = "*"
passlib = "*"
psycopg2-binary = "*"
pyramid = "<2.0"
pyramid_deferred_sqla = {git = "https://github.com/teamniteo/pyramid_deferred_sqla.git"}
pyramid_force_https = "*"
pyramid_heroku = "*"
pyramid_jwt = "*"
pyramid_openapi3 = "*"
pyramid_redirect = "*"
python-slugify = "*"
raven = "*"
structlog = "*"
sqlalchemy = "<1.4"
[tool.poetry.dev-dependencies]
bandit = "*"
black = "==20.8b1"
codespell = "*"
coverage = "*"
flake8 = "*"
flake8-bugbear = "*"
flake8-builtins = "*"
flake8-comprehensions = "*"
flake8-debugger = "*"
flake8-deprecated = "*"
flake8-docstrings = "*"
flake8-isort = "*"
flake8-mock = "*"
flake8-mutable = "*"
flake8-plone-hasattr = "*"
flake8-print = "*"
flake8-self = "*"
flake8-super-call = "*"
flake8-tuple = "*"
freezegun = "*"
mypy = "*"
npm = "*"
pre-commit = "*"
pre-commit-hooks = "*"
pytest = "*"
pytest-bdd = "*"
pytest-cov = "*"
pytest-mock = "*"
pytest-randomly = "*"
pytest-testmon = "*"
pytest-watch = "*"
requests-html = "*"
responses = "*"
sqlalchemy-stubs = "*"
testfixtures = "*"
typecov = "*"
waitress = "*"
webtest = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"