-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (64 loc) · 1.64 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (64 loc) · 1.64 KB
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
[project]
name = "opentargets-mira"
version = "1.0.0"
description = "Clinical trial data mining and integration for drug discovery"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Open Targets" }]
requires-python = ">=3.11"
keywords = ["clinical-trials", "drug-discovery", "open-targets"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"altair>=5.5.0",
"connectorx>=0.4.3",
"fastexcel>=0.16.0",
"httpx>=0.28.0",
"hydra-core>=1.3.2",
"loguru>=0.7.3",
"ontoma[ner]>=2.4.1",
"pandas>=2.3.3",
"pdfplumber>=0.11.8",
"polars>=1.34.0",
"polars-hash>=0.5.5",
"pyarrow>=22.0.0",
"pydantic>=2.11.7",
"sqlalchemy>=2.0.42",
"openai>=2.37.0",
"biopython>=1.87",
]
[project.urls]
Homepage = "https://github.com/opentargets/mira"
Repository = "https://github.com/opentargets/mira"
Issues = "https://github.com/opentargets/mira/issues"
[project.scripts]
mira = "mira.cli:main"
[project.optional-dependencies]
oracle = [
"cx-oracle>=8.3.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/mira"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ruff>=0.15.20",
"ty>=0.0.15",
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"ipykernel>=6.29.5",
"pre-commit>=4.6.0",
]
docs = [
"zensical>=0.0.62,<0.1",
]
[tool.ruff.lint]
select = ["F", "I"]