-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.58 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (46 loc) · 1.58 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bulutklinik-sdk"
version = "1.1.0"
description = "Official Bulutklinik partner API SDK for Python"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "Bulutklinik" }]
keywords = ["bulutklinik", "sdk", "api", "telemedicine", "health", "appointments", "hbys"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
dependencies = ["httpx>=0.24"]
[project.urls]
Homepage = "https://github.com/bulutklinik/python-sdk"
Issues = "https://github.com/bulutklinik/python-sdk/issues"
[project.optional-dependencies]
# ruff is pinned exactly, not floated. Its formatter gains new behaviour between
# minor releases — 0.16 started formatting Markdown code blocks — so a range lets
# a fresh CI runner fail `format --check` on a tree nobody touched.
dev = ["pytest>=8.0", "pytest-asyncio>=0.23", "mypy>=1.10", "ruff==0.16.0"]
[tool.hatch.build.targets.wheel]
packages = ["src/bulutklinik"]
[tool.ruff]
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "W", "N", "SIM"]
[tool.mypy]
strict = true
python_version = "3.10"
files = ["src", "tests"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]