-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
37 lines (32 loc) · 961 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cwhy"
version = "0.4.7"
authors = [
{ name="Emery Berger", email="[email protected]" },
{ name="Nicolas van Kempen", email="[email protected]" },
{ name="Bryce Adelstein Lelbach", email="[email protected]" }
]
dependencies = [
"openai>=1.30.1",
"PyYAML>=6.0.1",
"rich>=13.7.1",
"llm-utils>=0.2.8",
]
description = "Explains and proposes fixes for compile-time errors for many programming languages."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.scripts]
cwhy = "cwhy.__main__:main"
[project.urls]
"Homepage" = "https://github.com/plasma-umass/cwhy"
"Bug Tracker" = "https://github.com/plasma-umass/cwhy/issues"
[project.optional-dependencies]
dev = ["types-PyYAML>=6.0.1"]