-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1 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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
setup(
name='lazydl',
version='0.2.0',
author='deng1fan',
author_email='dengyifan@iie.ac.cn',
url='https://github.com/deng1fan',
description=u'Deep learning tools',
long_description=open("README.md", "r", encoding='utf-8').read(),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
'nvitop',
'redis',
'transformers',
'datasets',
'evaluate',
'pandas',
'dingtalkchatbot',
'psutil',
'nltk',
'jsonlines',
'omegaconf',
'setproctitle',
'rich',
'comet_ml',
'hydra_colorlog',
'peft',
'bitsandbytes',
'bert_score',
'rouge',
'sacrebleu'
],
exclude=["*.tests", "*.tests.*", "tests"],
include_package_data=True,
python_requires='>=3.6',
keywords=['lazydl', 'deep learning', 'pytorch'],
)