-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
84 lines (73 loc) · 2.17 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
77
78
79
80
81
82
83
84
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "tcpb"
version = "0.14.2"
description = "A Python client for TeraChem's protocol buffer API."
readme = "README.md"
license = "MIT"
authors = ["Colton Hicks <[email protected]>"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"License :: OSI Approved :: MIT License",
]
repository = "https://github.com/mtzgroup/tcpb-client"
homepage = "https://github.com/mtzgroup/tcpb-client"
documentation = "https://mtzgroup.github.io/tcpb-client/"
[tool.poetry.dependencies]
python = "^3.9"
google = "1.9.3"
protobuf = "3.20.1"
numpy = "^1.13"
httpx = "^0.27"
qcio = "^0.11.9"
pydantic = ">=2.0.0, !=2.4.0"
pydantic-settings = "^2.0.3"
[tool.poetry.group.dev.dependencies]
ruff = "^0.5.0"
mypy = "^1.5.1"
pre-commit = "^3.4.0"
pytest-cov = "^4.1.0"
coverage = "^7.3.0"
pytest-httpx = ">=0.23.0"
pytest-mock = "^3.11.1"
types-protobuf = "^5.27.0.20240626"
types-toml = "^0.10.8.20240310"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.34"
mkdocstrings = { extras = ["python"], version = "^0.26.1" }
markdown-include = "^0.8.1"
[tool.pytest.ini_options]
testpaths = "tests/"
[tool.ruff]
line-length = 88
target-version = "py39"
[tool.ruff.lint]
isort = { known-first-party = ["tests"] }
select = ["I", "F401"]
[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
[tool.coverage.run]
branch = true
omit = ["*/tests/*", "*/migrations/*", "*site-packages*", "*__init__.py"]