forked from Tongjilibo/bert4torch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (17 loc) · 677 Bytes
/
setup.py
File metadata and controls
21 lines (17 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='bert4torch',
version='v0.5.4',
description='an elegant bert4torch',
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT Licence',
url='https://github.com/Tongjilibo/bert4torch',
author='Tongjilibo',
install_requires=['numpy', 'tqdm', 'torch>1.6', 'torch4keras==0.2.7', 'six'],
packages=find_packages(),
entry_points={"console_scripts": ["bert4torch-llm-server = bert4torch.pipelines.chat:main"]},
)