forked from MoonshotAI/Kimi-Dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (41 loc) · 875 Bytes
/
setup.py
File metadata and controls
43 lines (41 loc) · 875 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
37
38
39
40
41
42
43
from setuptools import find_packages, setup
setup(
name='kimidev',
version='0.1.0',
packages=find_packages(),
package_data={
'': ['*.json'],
},
include_package_data=True,
install_requires=[
'anthropic',
'openai',
'pre-commit',
'datasets',
'tiktoken',
'libcst',
'llama-index',
'ipdb',
'jsonlines',
"beautifulsoup4",
"chardet",
"datasets",
"docker",
"ghapi",
"GitPython",
"modal",
"pre-commit",
"python-dotenv",
"requests",
"rich",
"tenacity",
"tqdm",
"unidiff",
"termcolor",
"matplotlib",
"vllm",
],
author='Kimi Dev',
description='Kimi Dev is a lightweight scaffolding for SWE-Bench.',
keywords='kimidev',
)