forked from Alir3z4/python-stop-words
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 782 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 782 Bytes
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
setup(
name='stop-words',
version=__import__("stop_words").get_version(),
description='Get list of common stop words in various languages in Python',
long_description=open('README.rst').read(),
license=open('LICENSE').read(),
author='Alireza Savand',
author_email='alireza.savand@gmail.com',
url='https://github.com/Alir3z4/python-stop-words',
packages=find_packages(),
package_data={
'stop_words': [
'stop-words/*.txt',
'stop-words/languages.json',
]
},
classifiers=[
"Programming Language :: Python",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development"
],
)