"projects/vscode:/vscode.git/clone" did not exist on "9a87d3eaadc49b733dd3d87f1e941c420ed7bf03"
setup.py 424 Bytes
Newer Older
wangsen's avatar
wangsen committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! -*- coding: utf-8 -*-

from setuptools import setup, find_packages

setup(
    name='bert4torch',
    version='0.2.2',
    description='an elegant bert4torch',
    long_description='bert4torch: https://github.com/Tongjilibo/bert4torch',
    license='MIT Licence',
    url='https://github.com/Tongjilibo/bert4torch',
    author='Tongjilibo',
    install_requires=['torch>1.6'],
    packages=find_packages()
)