-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 922 Bytes
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 922 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "medkit-sdk"
version = "2.0.0"
description = "A unified Python SDK for public medical APIs (OpenFDA, PubMed, ClinicalTrials.gov)"
readme = "README.md"
authors = [
{ name = "interestng", email = "dev@interestng.com" }
]
requires-python = ">=3.9"
dependencies = [
"httpx[http2]>=0.25.0",
"pydantic>=2.4.0",
"typer>=0.9.0",
"rich>=13.6.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-mock>=3.12.0",
"ruff>=0.1.0",
"black>=23.9.1",
"mypy>=1.6.0"
]
[project.scripts]
medkit = "medkit.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["medkit"]
[tool.black]
line-length = 100
target-version = ["py39"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]
fixable = ["ALL"]