-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
107 lines (96 loc) · 2.73 KB
/
pyproject.toml
File metadata and controls
107 lines (96 loc) · 2.73 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[build-system]
requires = ["setuptools>=68", "wheel", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "understand-first"
version = "0.3.0"
description = "Understand-First: maps, lenses, tours that make reading code faster than writing it."
readme = "README.md"
requires-python = ">=3.9"
authors = [{ name = "UF Team", email = "team@understand-first.dev" }]
license = { text = "MIT" }
keywords = ["code-analysis", "documentation", "understanding", "maps", "tours"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = [
"typer>=0.12.3",
"rich>=13.7.1",
"pyyaml>=6.0.2",
"jsonschema>=4.23.0",
"openapi-schema-validator",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.2",
"hypothesis>=6.112.1",
"pytest-cov>=4.0.0",
"ruff>=0.6.0",
"pyright>=1.1.350",
"pre-commit>=3.7.0",
"build>=1.2.0",
"twine>=5.0.0",
"pip-audit>=2.7.0",
"cyclonedx-bom>=4.0.0",
]
examples = [
"requests>=2.32.3",
"grpcio>=1.65.5",
"grpcio-tools>=1.65.5",
"fastapi>=0.111.1",
"uvicorn>=0.30.6",
"flask>=3.0.0",
"flask-sqlalchemy>=3.1.1",
"flask-login>=0.6.3",
"flask-wtf>=1.2.1",
"celery>=5.3.4",
"redis>=5.0.1",
"aiohttp>=3.9.1",
"asyncpg>=0.29.0",
"pydantic>=2.5.0",
"django>=4.2.7,<5",
"djangorestframework>=3.14.0",
"click>=8.1.7",
"colorama>=0.4.6",
]
[project.scripts]
u = "cli.ucli.main:app"
understand-first = "cli.ucli.main:app"
[project.urls]
Homepage = "https://github.com/sentinelops-ci/understand-first"
Documentation = "https://github.com/sentinelops-ci/understand-first#readme"
Repository = "https://github.com/sentinelops-ci/understand-first"
Issues = "https://github.com/sentinelops-ci/understand-first/issues"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
"cli.ucli" = ["py.typed"]
[tool.uv]
package = true
[tool.ruff]
line-length = 100
target-version = "py39"
src = ["cli", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
[tool.pyright]
include = ["cli"]
exclude = ["**/node_modules", ".venv", "build", "dist"]
pythonVersion = "3.9"
typeCheckingMode = "basic"
reportMissingImports = true
reportMissingTypeStubs = false
reportRedeclaration = "none"