-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 759 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (34 loc) · 759 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
33
34
35
36
[project]
name = "mapcoder_hackercup"
version = "1.0.0"
description = "Clone of MapCoder, modified for use on the HackerCup competition"
authors = [
{name = "Matus Lecky", email = "matus.lecky@gmail.com"},
{name = "Joe Clinton", email = "joeclinton1@btinternet.com"}
]
license = {text = "Idk"}
requires-python = ">= 3.10"
dependencies = [
"openai",
"numpy",
"pandas",
"python-dotenv",
"pyyml",
"tenacity",
"tiktoken",
"tqdm",
"gensim",
"jsonlines",
"astunparse",
"pyarrow",
"google-generativeai",
"accelerate",
"datasets",
"sentence_transformers",
"faiss-gpu-cu11",
"tabulate",
"anthropic"
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"