-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 955 Bytes
/
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
[tool.poetry]
name = "nexrates"
version = "0.1.0.dev1"
description = "Naira Exchange Rates API"
authors = ["Abdulhakeem Shaibu <[email protected]>"]
license = "BSD 2-Clause"
readme = "README.rst"
repository = "https://github.com/hkmshb/nexrates.git"
[tool.poetry.dependencies]
python = "^3.6"
aiofiles = "^0.6.0"
APScheduler = "^3.7.0"
fastapi = "^0.63.0"
gino = {extras = ["starlette"], version = "^1.0.1"}
gunicorn = "^20.0.4"
python-dotenv = "^0.15.0"
requests = "^2.25.1"
uvicorn = {extras = ["standard"], version = "^0.13.3"}
docutils = {version = "^0.16", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flake8-bugbear = "^20.11.1"
flake8-builtins = "^1.5.3"
flake8-comprehensions = "^3.3.1"
flake8-isort = "^4.0.0"
flake8-mypy = "^17.8.0"
flake8-rst = "^0.8.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 96
skip-string-normalization = true
quiet = true