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.
21 lines
502 B
Python
21 lines
502 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="codegeex",
|
|
py_modules=["codegeex"],
|
|
version="1.0",
|
|
description="CodeGeeX: A Multilingual Code Generative 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",
|
|
"tqdm==4.63.0",
|
|
],
|
|
entry_points={}
|
|
) |