-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (26 loc) · 953 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
# (c) KPN B.V.
# Licensed under MIT License (see LICENSE.txt)
# Author: Marco Tompitak, Text Analytics Group, KPN Data Science Lab
from distutils.core import setup
setup(name='deperson',
version='0.1',
description='Package for depersonalizing text data in Dutch',
author='Marco Tompitak',
author_email='[email protected]',
url='https://github.com/kpnDataScienceLab/deperson',
packages=['deperson'],
install_requires=['hunspell',
'unidecode',
'pandas',
],
package_data={'deperson':
['dict/*.aff',
'dict/*.dic',
'spellcheck/*.csv',
'whitelists/*.txt',
'blacklists/*.txt',
]},
scripts=['scripts/deperson_pickle.py',
'scripts/illegal_words_from_pickle.py',
],
)