forked from DivergerThinking/codeas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 890 Bytes
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 890 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "codeas"
authors = [
]
license = {text = "MIT License"}
description = "Boost your software development processes with generative AI."
requires-python = ">=3.9,<3.12"
dynamic = ["version", "readme", "dependencies"]
[project.urls]
Source = 'https://github.com/DivergerThinking/codeas'
Homepage = 'https://diverger.ai'
[project.scripts]
codeas = 'codeas.main:start_ui'
[tool.setuptools.dynamic]
version = {attr = "codeas.__version__"}
readme = {file=["README.md"], content-type="text/markdown"}
dependencies = {file = ["requirements.txt"]}
[tool.isort]
profile = "black"
[tool.ruff.lint.per-file-ignores]
"src/codeas/ui/page_ui.py" = ["F401"]