forked from Fantomas42/mots-vides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (33 loc) · 1.1 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
"""Setup script of mots-vides"""
from setuptools import setup
from setuptools import find_packages
setup(
name='mots-vides',
version='2015.5.11',
description='Python library for managing stop words in many languages.',
long_description=open('README.rst').read(),
keywords='stop, words, text, parsing',
author='Fantomas42',
author_email='[email protected]',
url='https://github.com/Fantomas42/mots-vides',
license=open('LICENSE').read(),
packages=find_packages(),
package_data={
'mots_vides': [
'datas/*.txt',
]
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules'],
entry_points={
'console_scripts': [
'merge-stop-words=mots_vides.scripts.merger:cmdline',
'rebase-stop-words=mots_vides.scripts.rebaser:cmdline',
]
}
)