forked from realpython/reader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 738 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 738 Bytes
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
[tool.poetry]
name = "common"
version = "0.1.0"
description = ""
authors = ["Lawrence Nevvon"]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
ptw = "^1.0.1"
Flask = "^2.2.2"
Flask-RESTful = "^0.3.9"
requests = "^2.28.1"
pytest-flask = "^1.2.0"
isort = "^5.10.1"
mysql-connector-python = "^8.0.31"
freezegun = "^1.3.1"
paramiko = "^3.4.0"
pytest = "^8.3.5"
[tool.poetry.dev-dependencies]
autopep8 = "^2.0.0"
pytest-cov = "^4.0.0"
pytest-watch = "^4.2.0"
[tool.poetry.group.dev.dependencies]
pytest-env = "^1.1.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest_env]
DB_CONFIG = "{'DBHOST': '127.0.0.1', 'DBUSER': 'root','DBPASSWORD':'password','DBNAME':'integrations_db'}"