-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
55 lines (48 loc) · 1.87 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
from setuptools import setup, find_packages
from codecs import open
from os import path
def read( fname ):
with open(fname) as fp:
content = fp.read()
return content
setup(
name="ParallelDots",
version="3.2.14",
description="Python Wrapper for ParallelDots APIs",
long_description=read("DESCRIPTION.rst"),
url="https://github.com/ParallelDots/ParallelDots-Python-API.git",
author="Ahwan Kumar,Manish Kumar,Vipin Kumar Gupta,Akash Sharma",
author_email="ahwan@paralleldots.com,manish@paralleldots.com,vipin@paralleldots.com,akash@paralleldots.com",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="paralleldots sentiment taxonomy ner semantic similarity deeplearning intent emotion abuse nsfw image visual api phrase text parser popularity target sentiment",
packages=find_packages( exclude= [ "contrib", "docs", "tests*" ] ),
setup_requires=[
"requests"
],
install_requires=[
"requests"
],
entry_points={
"console_scripts": [
"paralleldots=paralleldots:main",
],
},
)