-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.44 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
[project]
name = "codius"
version = "0.3.0"
description = "A coding assistant for domain-driven design projects in ASP.NET Core."
authors = [
{name = "David Runemalm", email = "david.runemalm@gmail.com"}
]
license = {text = "GPLv3"}
readme = "README.md"
requires-python = ">=3.9,!=3.13.*"
keywords = ["ddd", "codegen", "aspnetcore", "cli", "assistant"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Code Generators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"exceptiongroup",
"jinja2",
"langgraph",
"langchain-openai",
"python-dateutil",
"python-dotenv",
"pyyaml",
"prompt-toolkit",
"rich",
"tree-sitter==0.23.2",
"tree-sitter-c-sharp",
"typing-extensions",
"py-dependency-injection (>=1.0.0rc2,<2.0.0)",
]
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "*"
build = "*"
flake8 = "*"
pre-commit = "*"
pytest = "*"
setuptools = "*"
wheel = "*"
pyfakefs = "*"
[project.scripts]
codius = "codius.main:main"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"