-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 814 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 814 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
[project]
name = "forminit"
version = "0.1.0"
description = "Python SDK for Forminit"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"httpx>=0.24.0",
"typing-extensions>=4.0.0; python_version < '3.11'",
]
[project.urls]
Homepage = "https://forminit.com"
Repository = "https://github.com/forminit/forminit-python"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/forminit"]
[dependency-groups]
dev = [
"pre-commit>=3.5",
"pytest>=7.0",
"pytest-asyncio>=0.21",
"pytest-cov>=4.0",
"respx>=0.20.0",
"ruff>=0.5.0",
]
[tool.ruff]
line-length = 100
target-version = "py38"
[tool.ruff.lint]
select = ["B", "C4", "E", "F", "I", "UP"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]