-
Notifications
You must be signed in to change notification settings - Fork 341
/
setup.py
35 lines (31 loc) · 1.09 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
import sys
from io import open
from setuptools import setup, find_packages
import subprocess
with open("requirements.txt") as f:
install_requires = f.read().strip().split("\n")
# get version from VERSION.txt
with open("VERSION.txt") as f:
version = f.read().strip()
setup(
name="fast_bert",
# get version from VERSION file
version=version,
description="AI Library using BERT",
author="Kaushal Trivedi",
author_email="[email protected]",
license="Apache2",
url="https://github.com/kaushaltrivedi/fast-bert",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords="BERT NLP deep learning google",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=install_requires,
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
zip_safe=False,
)