generated from labteral/python-package
-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
executable file
·39 lines (36 loc) · 1.15 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
import ernie
setup(
name='ernie',
version=ernie.__version__,
description=(
'An Accessible Python Library for State-of-the-art '
'Natural Language Processing. Built with HuggingFace\'s Transformers.'
),
url='https://github.com/labteral/ernie',
author='Rodrigo Martínez Castaño',
author_email='[email protected]',
license='Apache License (Version 2.0)',
packages=find_packages(),
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.6",
install_requires=[
'tf-keras',
'huggingface-hub',
'transformers',
'scikit-learn',
'pandas',
'py-cpuinfo',
])