-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·49 lines (48 loc) · 1.2 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='langbridge',
packages=find_packages(exclude=[]),
version='0.0.1',
license='MIT',
description='LANGBRIDGE: Multilingual Reasoning Without Multilingual Supervision',
author='Dongkeun Yoon',
url='https://github.com/kaistAI/LangBridge',
python_requires='>=3.7',
long_description_content_type='text/markdown',
keywords=[
'artificial intelligence',
'deep learning',
'transformers',
'natural language processing',
'large language models'
],
# datasets
# deepspeed
# einops
# einops-exts
# huggingface-hub
# pandas
# pytorch-lightning
# sentencepiece
# torchinfo
# transformers
# wandb
install_requires=[
'datasets',
'deepspeed',
'einops',
'einops-exts',
'huggingface-hub',
'pandas',
'pytorch-lightning',
'sentencepiece',
'torchinfo',
'transformers',
'wandb',
],
classifiers=[
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
)