forked from SAP-archive/SDK-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 740 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 740 Bytes
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
# coding: utf-8
from os import path
from codecs import open
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), 'r', 'utf-8') as f:
readme = f.read()
setup(
name="recastai",
version="4.0.0",
packages=find_packages(),
description="Recast.AI official SDK for python",
long_description=readme,
author="Paul Renvoise",
author_email="paul.renvoise@recast.ai",
url="https://github.com/RecastAI/sdk-python",
license="MIT",
install_requires=[
"requests>=2.10",
"pytest>=2.9",
"pytest-cov>=2.2",
"responses>=0.5"
],
keywords="recastai bot nlp")