-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 919 Bytes
/
Copy pathpyproject.toml
File metadata and controls
54 lines (47 loc) · 919 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
49
50
51
52
53
54
[tool.black]
line-length = 120
target-version = ['py311']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.venv
| venv
| __pycache__
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 120
skip = [". git", "venv", ". venv", "__pycache__"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["tests"]
pythonpath = ["."]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "helix"
version = "0.1.0"
description = "AI-Powered API Mocking Platform"
requires-python = ">=3.11"
dependencies = [
"typer",
"uvicorn",
"rich",
"questionary",
"fastapi"
]
[project.scripts]
helix = "app.cli:app"
[tool.setuptools.packages.find]
include = ["app*"]
exclude = ["assets*", "static*", "templates*", "tests*"]