-
Notifications
You must be signed in to change notification settings - Fork 65
/
setup.py
42 lines (39 loc) · 990 Bytes
/
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
import io
import os
import sys
from setuptools import find_packages, setup
# Package meta-data.
NAME = 'nlpgnn'
DESCRIPTION = 'An out-of-the-box NLP toolkit can easily help you solve tasks such as\
Entity Recognition, Text Classification, Relation Extraction and so on.'
URL = 'https://github.com/kyzhouhzau/nlpgnn'
EMAIL = '[email protected]'
AUTHOR = 'Kaiyin Zhou'
REQUIRES_PYTHON = '>=3.6.0'
VERSION = '0.0.0'
REQUIRED = [
'typeguard',
'gensim',
'tqdm',
'regex',
'scikit-learn',
'sentencepiece',
'networkx'
]
# Where the magic happens:
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
install_requires=REQUIRED,
include_package_data=True,
license='Apache',
classifiers=[
'Programming Language :: Python',
],
)