-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (32 loc) · 1003 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="exmldoc",
version="1.0.10",
author='Yannick Versley',
author_email='[email protected]',
description='Deals with ExportXMLv2 format for annotated text',
install_requires=[
'isounidecode',
'simplejson',
'msgpack-python',
'sortedcontainers',
'setuptools >= 19',
'mock >= 2.0.0'
],
license='LGPLv3',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Text Processing :: Linguistic'],
package_dir = {'': 'py_src'},
packages=find_packages('py_src'),
test_suite = 'exmldoc.tests',
entry_points={
'console_scripts': [
'exml2cqp = exmldoc.exml2cqp:main'
]
}
)