-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
44 lines (41 loc) · 1.12 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
import setuptools
def readme():
with open('README.rst') as f:
return f.read()
setuptools.setup(
name='srx_segmenter',
version='0.0.2',
packages=['.'],
description="Segment text with SRX",
long_descriptiondescription=readme(),
classifiers=[
'Topic :: Utilities',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
],
license='GPLv3',
author='Motoki Naruse',
author_email='[email protected]',
url='https://github.com/narusemotoki/srx_segmenter',
keywords='Translation, Segmentation, SRX',
zip_safe=False,
install_requires=[
'lxml',
'regex',
'mypy-lang',
],
extras_require={
'test': [
'nose',
'rednose',
'coverage',
'flake8',
],
}
)