forked from yangheng95/PyABSA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 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
# -*- coding: utf-8 -*-
# file: setup.py
# time: 2021/4/22 0022
# author: yangheng <[email protected]>
# github: https://github.com/yangheng95
# Copyright (C) 2021. All Rights Reserved.
from setuptools import setup, find_packages
from pyabsa import __name__, __version__
setup(
name=__name__,
version=__version__,
description='This tool provides the state-of-the-art models for aspect term extraction (ATE), aspect polarity classification (APC), and text classification.',
# The project's main homepage.
url='https://github.com/yangheng95/pyabsa',
# Author details
author='Yang Heng',
author_email='[email protected]',
python_requires=">=3.6",
packages=find_packages(),
include_package_data=True,
exclude_package_date={'': ['.gitignore']},
# Choose your license
license='MIT',
install_requires=['findfile>=1.5', 'autocuda>=0.8', 'spacy', 'networkx', 'seqeval', 'update_checker', 'typing_extensions',
'tqdm', 'termcolor', 'gitpython', 'googledrivedownloader', 'transformers>4.5', 'torch>=1.0', 'sentencepiece', 'termcolor'],
)