forked from jonathandunn/text_analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.68 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
40
41
42
43
import os
from setuptools import find_packages
from distutils.core import setup
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="textanalytics",
version="1.1",
author="Jonathan Dunn",
author_email="[email protected]",
description="Basic computational linguistics and natural language processing in Python",
license="GNU GENERAL PUBLIC LICENSE v3",
url="https://github.com/jonathandunn/text_analytics",
keywords="text analytics, natural language processing, computational linguistics",
packages=find_packages(exclude=["*.pyc", "__pycache__"]),
package_data={'': ['text_analytics.*']},
install_requires=["cytoolz",
"gensim>=4.0",
"numpy",
"pandas",
"scipy",
"scikit-learn>=0.24.0",
"tensorflow>=2.0",
"spacy>=3.0",
"wordcloud",
"matplotlib",
"seaborn",
"en_core_web_sm @ https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.0.0/en_core_web_sm-2.0.0.tar.gz",
"requests",
"stop-words",
"boto3",
"tqdm",
"c2xg>=1.0",
"corpus-similarity>=1.0",
"clean-text",
],
include_package_data=True,
long_description=read('README.md'),
long_description_content_type='text/markdown',
)