-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (65 loc) · 1.7 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
[tool.poetry]
name = "chemcloud-server"
version = "0.14.2"
description = "An HTTP API for BigChem"
authors = ["Colton Hicks <github@coltonhicks.com>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "chemcloud_server" }]
repository = "https://github.com/mtzgroup/chemcloud-server"
homepage = "https://chemcloud.mtzlab.com"
[tool.poetry.dependencies]
python = "^3.11"
python-jose = { extras = ["cryptography"], version = "^3.3.0" }
httpx = "^0.23.3"
python-dotenv = "^0.21.1"
gunicorn = "^22.0.0"
uvicorn = "^0.30.1"
uvloop = "^0.19.0"
httptools = "^0.6.0"
aiofiles = "^23.1.0"
cached-property = "^1.5.2"
bigchem = "^0.10.0"
fastapi = ">=0.111.0"
pydantic = ">=2.0.0,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0"
pydantic-settings = "^2.0.3"
qcio = "^0.11.7"
python-multipart = "^0.0.9"
[tool.poetry.group.dev.dependencies]
black = "^24.0.0"
mypy = "^1.0.1"
isort = "^5.12.0"
pytest = "^7.2.1"
pre-commit = "^3.0.4"
pytest-cov = "^4.0.0"
pytest-timeout = "^2.1.0"
types-requests = "^2.28.11.13"
colorama = "^0.4.6"
ruff = "^0.0.287"
types-toml = "^0.10.8.20240310"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = "tests/"
[tool.black]
line-length = 88
[tool.isort]
force_grid_wrap = 0
include_trailing_comma = true
line_length = 88
multi_line_output = 3
use_parentheses = true
[tool.ruff.per-file-ignores]
"chemcloud_server/routes/dashboard.py" = ["E501"]
[tool.coverage.run]
branch = true
omit = ["*/tests/*", "*/migrations/*", "*site-packages*", "*__init__.py"]
[tool.mypy]
plugins = "pydantic.mypy"
ignore_missing_imports = true
[tool.pydantic-mypy]
init_forbid_extra = true
init_typed = true
warn_required_dynamic_aliases = true
warn_untyped_fields = true