-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
49 lines (37 loc) · 1.22 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
40
41
42
43
44
45
46
47
48
49
from setuptools import setup
from os import path
setup(
name='stemmsk',
version='0.0.2',
description='A Pythonic stemmer for Slovak language',
url='https://github.com/mrshu/stemm-sk',
author='mr.Shu',
author_email='mr@shu.io',
maintainer='mr.Shu',
maintainer_email='mr@shu.io',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: Slovak',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Text Processing :: Linguistic',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords='stemming slovak',
packages=['stemmsk'],
entry_points={
'console_scripts': [
'stemmsk=stemmsk:main',
],
},
)