-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (48 loc) · 1.25 KB
/
setup.py
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
44
45
46
47
48
49
from setuptools import setup, find_packages
setup(
name='Unigen',
version='0.1.0',
author='Siyuan Wu & Yue Huang ',
author_email='nauyisu022@gmail.com',
description='A unified framework for textual dataset generation',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://unigen-framework.github.io/',
packages=find_packages(),
entry_points={
'console_scripts': [
'unigen-cli = unigen.cli:main'
]
},
install_requires=[
'numpy',
'pandas',
'matplotlib',
'openai>1.0.0',
'fschat[model_worker]',
'protobuf',
'python-dotenv',
'PyYAML',
'replicate',
'requests',
'scikit-learn',
'tenacity',
'tiktoken',
'torch',
'tqdm',
'transformers',
'urllib3',
'wikipedia-api',
'anthropic',
'google.generativeai',
'google-api-python-client',
'google.ai.generativelanguage',
'zhipuai',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)