-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 907 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
from setuptools import setup, find_packages
setup(
name='biased-stop-words',
version='2018.11.29.0',
description='Generates biased stop word lists for various genres',
long_description=open('README.rst').read(),
url='https://github.com/gregology/biased-stop-words',
author='Greg Clarke',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python'
],
keywords='stop words machine learning ml bias biased natural language processing nlp',
packages=find_packages(),
install_requires=['pyyaml'],
package_data={
'biased_stop_words': [
'biased-words/*.txt',
'biased-words/stop-word-mapping.yaml'
]
}
)