-
Notifications
You must be signed in to change notification settings - Fork 91
/
setup.py
38 lines (35 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
30
31
32
33
34
35
36
37
38
import pathlib
import aspect_based_sentiment_analysis as absa
from setuptools import setup
from setuptools import find_packages
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The README text
README = (HERE / "README.md").read_text()
description = 'Aspect Based Sentiment Analysis: ' \
'Transformer & Interpretability (TensorFlow)'
setup(
name='aspect-based-sentiment-analysis',
version=absa.__version__, # Semantic: MAJOR, MINOR, and PATCH
url='https://github.com/ScalaConsultants/Aspect-Based-Sentiment-Analysis',
description=description,
long_description=README,
long_description_content_type="text/markdown",
license="Apache-2.0",
author=' Rafal Rolczynski',
author_email='rafal.rolczynski@gmail.com',
include_package_data=False,
packages=find_packages(),
install_requires=[
'tensorflow==2.5',
'transformers==4.8',
'pytest',
'scikit-learn',
'ipython',
'google-cloud-storage',
'testfixtures',
'optuna',
'spacy'
],
python_requires='==3.7.*',
)