Commit ·
6caee2d
1
Parent(s): 3d7a972
Upload setup.py
Browse files
setup.py
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from io import open
|
| 2 |
+
from setuptools import find_packages, setup
|
| 3 |
+
|
| 4 |
+
setup(
|
| 5 |
+
name="ZEN",
|
| 6 |
+
version="0.1.0",
|
| 7 |
+
author="chenguimin, Sinovation Ventures AI Institute authors",
|
| 8 |
+
author_email="chenguimin@chuangxin.com",
|
| 9 |
+
description="a BERT-based Chinese (Z) text encoder Enhanced by N-gram representations",
|
| 10 |
+
long_description=open("README.md", "r", encoding='utf-8').read(),
|
| 11 |
+
long_description_content_type="text/markdown",
|
| 12 |
+
keywords='NLP deep learning transformer pytorch BERT ZEN',
|
| 13 |
+
license='Apache',
|
| 14 |
+
url="https://github.com/sinovation/ZEN",
|
| 15 |
+
packages=find_packages(exclude=["*.tests", "*.tests.*",
|
| 16 |
+
"tests.*", "tests"]),
|
| 17 |
+
install_requires=['numpy',
|
| 18 |
+
'boto3',
|
| 19 |
+
'requests',
|
| 20 |
+
'tqdm',
|
| 21 |
+
'regex'],
|
| 22 |
+
entry_points={
|
| 23 |
+
'console_scripts': [
|
| 24 |
+
]
|
| 25 |
+
},
|
| 26 |
+
# python_requires='>=3.5.0',
|
| 27 |
+
classifiers=[
|
| 28 |
+
'Intended Audience :: Science/Research',
|
| 29 |
+
'License :: OSI Approved :: Apache Software License',
|
| 30 |
+
'Programming Language :: Python :: 3',
|
| 31 |
+
'Topic :: Scientific/Engineering :: Artificial Intelligence',
|
| 32 |
+
],
|
| 33 |
+
)
|