mirror of https://github.com/THUDM/CodeGeeX.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
566 B
Python
23 lines
566 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="codegeex",
|
|
py_modules=["codegeex"],
|
|
version="1.0",
|
|
description="CodeGeeX: A Open Multilingual Code Generation Model.",
|
|
author="Qinkai Zheng",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"fire>=0.4.0",
|
|
"ipython>=8.4.0",
|
|
"numpy>=1.22.0",
|
|
"pandas>=1.3.5",
|
|
"pyzmq>=23.2.1",
|
|
"regex>=2022.3.15",
|
|
"setuptools>=58.0.4",
|
|
"transformers>=4.22.0",
|
|
"pytorch>=1.10.0",
|
|
"tqdm>=4.63.0",
|
|
],
|
|
entry_points={}
|
|
) |