-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
36 lines (34 loc) · 1.41 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
from os import path
from setuptools import setup
import streamparser
setup(
name='apertium-streamparser',
version=streamparser.__version__,
license=streamparser.__license__,
description='Python library to parse Apertium stream format',
long_description=open(path.join(path.abspath(path.dirname(__file__)), 'README.md')).read(),
long_description_content_type='text/markdown; charset=UTF-8',
keywords='apertium parsing linguistics',
author='Sushain K. Cherivirala',
author_email='sushain@skc.name',
url='https://github.com/apertium/streamparser',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Text Processing :: Linguistic',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
],
python_requires='>=3.4',
entry_points={
'console_scripts': ['apertium-streamparser=streamparser:main'],
},
py_modules=['streamparser'],
)