-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
25 lines (23 loc) · 1016 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
from setuptools import setup, find_packages
EXCLUDED_PACKAGES = list()
setup(
name='parsi_io',
version='0.1.0',
packages=find_packages(include=['parsi_io', 'parsi_io.*'], exclude=EXCLUDED_PACKAGES),
install_requires = [
'hazm>=0.7.0',
'tqdm',
'camel-tools',
'Tashaphyne',
'gdown'
],
package_data={"parsi_io": ["modules/information_anonymizer/utils/*.txt", "modules/quantity_extractions/resources/*",
"modules/quranic_extractions/data/*.txt", "modules/quranic_extractions/pickles/*",
"modules/SentenceType/SentenceClassifier_resources/*", "modules/stockmarket_event_extractor/resources/*",
"resources/*.model", "resources/farsi_names.sql", "resources/places.txt"]},
setup_requires=['flake8'],
url='https://github.com/language-ml/parsi.io.git',
license='Apache License 2.0',
author='Language-ml team',
description='A persian NLP module',
)