mirror of
https://github.com/huggingface/transformers.git
synced 2025-07-03 12:50:06 +06:00
32 lines
1.3 KiB
Python
32 lines
1.3 KiB
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name="pytorch_pretrained_bert",
|
|
version="0.1.0",
|
|
author="Thomas Wolf, Victor Sanh, Tim Rault, Google AI Language Team Authors",
|
|
author_email="thomas@huggingface.co",
|
|
description="PyTorch version of Google AI BERT model with script to load Google pre-trained models",
|
|
long_description=open("README.md", "r").read(),
|
|
long_description_content_type="text/markdown",
|
|
keywords='BERT NLP deep learning google',
|
|
license='Apache',
|
|
url="https://github.com/huggingface/pytorch-pretrained-BERT",
|
|
packages=find_packages(exclude=["*.tests", "*.tests.*",
|
|
"tests.*", "tests"]),
|
|
install_requires=['numpy',
|
|
'torch>=0.4.1',
|
|
'boto3',
|
|
'requests>=2.18',
|
|
'tqdm>=4.19'],
|
|
scripts=["bin/pytorch_pretrained_bert"],
|
|
python_requires='>=3.5.0',
|
|
tests_require=['pytest'],
|
|
classifiers=[
|
|
'Intended Audience :: Science/Research',
|
|
'Development Status :: 1 - Alpha',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Programming Language :: Python :: 3',
|
|
'Topic :: Scientific/Engineering :: Artificial Intelligence',
|
|
],
|
|
)
|