-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (49 loc) · 1.38 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
[tool.poetry]
name = "falca"
version = "2.4.0"
description = "Falca is an intuitive REST APIs framework based on the falcon framework."
authors = ["aprilahijriyan <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/aprilahijriyan/falca"
repository = "https://github.com/aprilahijriyan/falca"
keywords = ["wsgi", "asgi", "framework", "rest api"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Application Frameworks"
]
[tool.poetry.dependencies]
python = "^3.7"
falcon = "^3.0.0"
Mako = "^1.1.4"
six = "^1.15.0"
typer = {extras = ["all"], version = "^0.3.2"}
rich = "^10.1.0"
requests-toolbelt = "^0.9.1"
ipython = "^7.23.1"
typing-inspect = "^0.6.0"
[tool.poetry.dev-dependencies]
pre-commit = "^2.12.1"
httpie = "^2.4.0"
pylint = "^2.8.2"
pytest = "^6.2.4"
pytest-asyncio = "^0.15.1"
marshmallow = "^3.12.1"
pydantic = "^1.8.2"
gitchangelog = "^3.0.4"
pystache = "^0.5.4"
tox = "^3.23.1"
pytest-cov = "^2.12.1"
pytest-order = "^1.0.0"
[tool.poetry.scripts]
falca = "falca.cli.app:cli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"