-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
65 lines (57 loc) · 1.73 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
[tool.poetry]
name = "liminal-orm"
version = "1.1.4"
description = "An ORM and toolkit that builds on top of Benchling's platform to keep your schemas and downstream code dependencies in sync."
authors = ["DynoTx Open Source <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/dynotx/liminal-orm"
repository = "https://github.com/dynotx/liminal-orm"
documentation = "https://dynotx.github.io/liminal-orm/"
packages = [{include = "liminal"}]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/dynotx/liminal-orm/issues"
[tool.poetry.dependencies]
python = ">=3.9,<4"
benchling-sdk = ">=1.8.0"
bs4 = "^0.0.2"
numpy = "^1.23.5"
pandas = "^1.5.3"
pydantic = ">=2,<=2.7" # TODO: We need to assess this upgrade
requests = "^2.32.3"
rich = "^13.9.2"
sqlalchemy = "<2" # TODO: We need to assess this upgrade
tenacity = ">=8,<10"
typer = "^0.12.5"
lxml = "^5.3.0"
psycopg2-binary = "^2.9.10"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
mkdocs-material = "^9.5.41"
mypy = "^1.1.1"
pre-commit = "^4.0.1"
pytest = "^8.3.3"
ruff = "^0.6.9"
sqlalchemy = "1.4.49"
types-beautifulsoup4 = "^4.12.0.20240907"
types-requests = "^2.32.0.20240914"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
liminal = "liminal.cli.cli:app"
[tool.mypy]
check_untyped_defs = true
disallow_untyped_defs = true
explicit_package_bases = true
mypy_path = "$MYPY_CONFIG_FILE_DIR/"
namespace_packages = true
no_implicit_optional = true
strict_optional = true
packages = "liminal"
plugins = ["pydantic.mypy", "numpy.typing.mypy_plugin"]
show_error_codes = true
warn_unused_ignores = true
disable_error_code=["union-attr"]
[[tool.mypy.overrides]]
module = ["sqlalchemy.*"]
ignore_missing_imports = true