forked from Exodia/napi-python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
16 lines (15 loc) · 417 Bytes
/
Copy pathsetup.py
File metadata and controls
16 lines (15 loc) · 417 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
fromdistutils.coreimportsetup
setup(
name='maluuba_napi',
version='0.0.1',
author='Maluuba',
author_email='napi@maluuba.com',
packages=['maluuba_napi'],
url='http://developer.maluuba.com',
license='LICENSE',
description='A simple wrapper for consuming the Maluuba NLP API',
long_description=open('README.md').read(),
install_requires=[
'requests >= 0.14.1'
]
)