-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (46 loc) · 1.4 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Lint as: python3
""" Utils for deep learning.
"""
import os
from setuptools import find_packages, setup
install_requires = [
"tqdm",
"dill",
"omegaconf",
"numpy",
"pandas",
"seaborn",
"matplotlib",
"loguru",
]
extras = {}
extras["dev"] = [
"black",
"flake8",
"isort",
]
setup(
name="nlp-utils",
version="0.1.1dev0", # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots)
description="Utils for NLP.",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords="NLP deep learning transformer pytorch BERT",
install_requires=install_requires,
extras_requires=extras,
python_requires=">=3.7.0",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
zip_safe=False, # Required for mypy to find the py.typed file
)