forked from clips/pattern
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 1.25 KB
/
setup.py
File metadata and controls
33 lines (32 loc) · 1.25 KB
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
#### PATTERN #######################################################################################
from setuptools import setup, find_packages
from pattern_text import __version__, __author__
setup(
name='pattern-text',
version=__version__,
author=__author__,
url='https://github.com/xhlulu/pattern-text',
description='A fork of pattern containing only pattern.text submodule.',
packages=find_packages(include=['pattern_text*']),
package_data = {
"pattern.text.de" : ["*.txt", "*.xml"],
"pattern.text.en" : ["*.txt", "*.xml", "*.slp"],
"pattern.text.en.wordlist": ["*.txt"],
"pattern.text.en.wordnet" : ["*.txt", "dict/*"],
"pattern.text.ru" : ["*.txt", "*.xml", "*.slp"],
"pattern.text.ru.wordlist": ["*.txt"],
"pattern.text.es" : ["*.txt", "*.xml"],
"pattern.text.fr" : ["*.txt", "*.xml"],
"pattern.text.it" : ["*.txt", "*.xml"],
"pattern.text.nl" : ["*.txt", "*.xml"],
},
install_requires=[
# dependencies here
'nltk'
],
extras_require={
# For special installation, e.g. pip install simple-pip-example[dev]
'dev': ['black']
},
include_package_data=True
)