-
Notifications
You must be signed in to change notification settings - Fork 159
/
pyproject.toml
52 lines (43 loc) · 1.15 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
[tool.poetry]
name = "fern_python"
version = "0.0.0"
description = ""
authors = []
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^2.8.2"
typer = { extras = ["all"], version = "^0.6.1" }
fern-fern-generator-exec-sdk = { version = "0.82.5", source = "fern-prod" }
ordered-set = "^4.1.0"
pydantic-core = "^2.18.2"
fern-fern-fdr-sdk = { version = "0.98.20", source = "fern-prod" }
fern-fern-generator-cli-sdk = { version = "0.0.18", source = "fern-prod" }
fern_fern_ir_v53 = "53.12.0"
[tool.poetry.dev-dependencies]
pytest = "^7.4.2"
mypy = "^1.13.0"
black = "^24.3.0"
flake8 = "^5.0.4"
isort = "^5.10.1"
pre-commit = "^2.20.0"
snapshottest = "^0.6.0"
[[tool.poetry.source]]
name = "fern-prod"
url = "https://pypi.buildwithfern.com/"
default = false
secondary = true
[tool.poetry.group.dev.dependencies]
pytest-only = "^2.0.0"
ruff = "^0.5.6"
[tool.black]
line-length = 120
target-version = ['py38']
include = '\.pyi?$'
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--ignore-glob=tests/**/generated --ignore-glob=tests/**/snapshots"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"