-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
56 lines (52 loc) · 1.69 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
50
51
52
53
54
55
56
"""A wrapper for wit.ai's Duckling.
See:
https://github.com/wit-ai/duckling
"""
from setuptools import setup
setup(
name='duckling',
version='1.8.0',
description='A wrapper for wit.ai\'s Duckling',
url='https://github.com/FraBle/python-duckling',
author='Frank Blechschmidt',
author_email='frank.blechschmidt@sap.com',
license='Apache License 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='duckling witai datetime parser parsing nlp',
packages=['duckling'],
install_requires=[
'JPype1',
'python-dateutil',
'six'
],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-cov'],
package_data={
'duckling': [
'jars/clj-time-0.8.0.jar',
'jars/clojure-1.8.0.jar',
'jars/duckling-0.4.23.jar',
'jars/joda-time-2.3.jar',
'jars/lazymap-3.1.0.jar',
'jars/plumbing-0.5.3.jar',
'jars/schema-1.0.1.jar',
'jars/tools.logging-0.2.6.jar',
],
},
package_dir={'duckling': 'duckling'},
include_package_data=True,
zip_safe=False
)