-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
43 lines (40 loc) · 1.12 KB
/
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
38
39
40
41
42
43
[project]
name = "CoverUp"
description = "LLM-powered test coverage improver"
dynamic = ["readme", "version"]
authors = [
{ name="Juan Altmayer Pizzorno", email="[email protected]" },
{ name="Emery Berger", email="[email protected]" }
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X"
]
requires-python = ">=3.10"
dependencies = [
"asyncio",
"openai",
"tiktoken",
"aiolimiter",
"tqdm",
"slipcover>=1.0.13",
"pytest-cleanslate>=1.0.6", # 1.0.6 fixes collection error bug
"pytest-repeat",
"litellm>=1.33.1"
]
[build-system]
requires = [
"setuptools>61",
"wheel",
"tomli; python_version < '3.11'" # tomllib alternative
]
build-backend = "setuptools.build_meta"
[project.scripts]
coverup = "coverup.coverup:main"
[project.urls]
"Homepage" = "https://github.com/plasma-umass/coverup"
"Repository" = "https://github.com/plasma-umass/coverup"