forked from fern-api/fern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (39 loc) · 998 Bytes
/
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
[tool.poetry]
name = "fern_python"
version = "0.0.0"
description = ""
authors = []
[tool.poetry.dependencies]
python = "^3.8"
pydantic = "^1.9.2"
typer = {extras = ["all"], version = "^0.6.1"}
fern-fern-generator-exec-sdk = {version = "0.0.570", source = "fern-prod"}
ordered-set = "^4.1.0"
fern_fern_ir_v34 = "^0.0.3363"
[tool.poetry.dev-dependencies]
pytest = "^7.4.2"
mypy = "^0.971"
black = "^22.6.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"
[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"