-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (42 loc) · 1.27 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
[tool.poetry]
name = "license-manager-simulator"
version = "0.3.0"
description = "The license-manager-simulator is an application that simulates lmutil output for use in the development of applications which interface to the license servers."
authors = ["OmniVector Solutions <info@omnivector.solutions>"]
license = "MIT"
packages = [{ include = "license_manager_simulator" }]
[tool.poetry.dependencies]
python = "^3.8"
fastapi = "^0.68.1"
SQLAlchemy = "^1.4.23"
uvicorn = "^0.15.0"
requests = "^2.27.1"
psycopg2-binary = "^2.9.3"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
pytest-asyncio = "^0.15.1"
pytest-cov = "^2.12.1"
pytest-env = "^0.6.2"
pytest-random-order = "^1.0.4"
black = "^21.7b0"
flake8 = "^3.9.2"
isort = "^5.9.3"
requests = "^2.26.0"
Jinja2 = "^3.0.1"
python-dotenv = "^0.19.0"
[tool.pytest.ini_options]
addopts = "-v --random-order --cov=license_manager_simulator --cov-report=term-missing --cov-fail-under=85"
env = [
"DATABASE_URL = sqlite:///./sqlite-testing.db",
]
[tool.black]
line-length = 110
src = ["license_manager_simulator", "tests"]
[tool.isort]
line_length = 110
src_paths = ["license_manager_simulator", "tests"]
multi_line_output = 3
include_trailing_comma = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"