setup.py 410 Bytes
Newer Older
yangzhong's avatar
yangzhong 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.1.9',
    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()
)