-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
43 lines (39 loc) · 1.06 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
#! -*- coding: utf-8 -*-
from setuptools import setup, find_packages
ignore = ['test','tests']
install_requires = [
'lightning>=2.0 , <50.0',
'numpy-io>=0.0.10 , < 0.1.0',
'sentencepiece',
'numpy',
'transformers>=4.39',
'seqmetric',
'scipy',
'scikit-learn',
'tensorboard',
'tqdm',
'six',
'pyyaml',
'safetensors',
'fastdatasets>=0.9.17',
'importlib_metadata',
]
setup(
name='deep_training',
version='0.3.1',
description='an easy training architecture',
long_description='torch_training: https://github.com/ssbuild/deep_training.git',
license='Apache License 2.0',
url='https://github.com/ssbuild/deep_training',
author='ssbuild',
author_email='9727464@qq.com',
install_requires=install_requires,
package_dir={"": "src"},
packages=find_packages("src"),
package_data={"": ["**/*.cu", "**/*.cpp", "**/*.cuh", "**/*.h", "**/*.pyx"]},
entry_points={
'console_scripts': [
'deep_export = deep_training.tools.export_transformers:export',
],
}
)