-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 802 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
from setuptools import setup, find_packages
setup(
name='creepyParser',
version='1.0',
author='Irene Spanou',
description='Extracts information from CreepyPasta stories',
long_description='Attempts to retrieve useful information from CreepyPasta stories',
url='https://github.com/iresil',
keywords='creepypasta, parser',
python_requires='>=3.10, <4',
packages=find_packages(),
install_requires=[
'spacy~=3.6.1',
'mysql~=0.0.3',
'mysql-connector-python~=8.0.32',
'gensim~=4.3.1',
'spacytextblob~=4.0.0',
'pyenchant~=3.2.2',
'matplotlib~=3.7.2',
'numpy~=1.25.2'
],
package_data={
},
entry_points={
'runners': [
'creepyParser=creepyParser:main',
]
}
)