-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
34 lines (30 loc) · 1.21 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
# -*- coding: utf-8 -*
import setuptools
with open("README.md", "r") as fh:
description = fh.read()
setuptools.setup(
name="arabica",
version="1.7.7",
author="Petr Koráb",
author_email="[email protected]",
packages=["arabica"],
description="Python package for exploratory text data analysis",
long_description=description,
long_description_content_type="text/markdown",
url="https://github.com/PetrKorab/Arabica",
python_requires=>3.9,
install_requires = ['pandas == 1.4.0',
'nltk == 3.6.2',
'regex == 2022.10.31',
'finvader',
'matplotlib == 3.6.0',
'matplotlib-inline == 0.1.6',
'plotnine == 0.10.1',
'wordcloud == 1.8.2.2',
'jenkspy == 0.3.2',
'vaderSentiment == 3.3.2',
'cleantext == 1.1.4',
'mizani == 0.9.2',
'pillow == 9.4.0'],
license='OSI Approved :: Apache Software License'
)