forked from JoseRoman/IndicoIo-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
71 lines (65 loc) · 1.92 KB
/
setup.py
File metadata and controls
71 lines (65 loc) · 1.92 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
"""
Setup for indico apis
"""
import sys
PY2 = True if sys.version_info[0] == 2 else False
PY3 = not PY2
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
REQUIREMENTS = [
"requests >= 1.2.3",
"six >= 1.3.0",
"pillow >= 2.8.1"
]
# shim for futures support
if PY2:
REQUIREMENTS.append(
"futures >= 3.0.0"
)
setup(
name="IndicoIo",
version="1.1.3",
packages=[
"indicoio",
"indicoio.text",
"indicoio.image",
"indicoio.multi",
"indicoio.utils",
"indicoio.custom",
"indicoio.pdf",
"indicoio.docx",
"tests",
],
description="""A Python Wrapper for indico. Use pre-built state of the art machine learning algorithms with a single line of code.""",
license="MIT License (See LICENSE)",
long_description=open("README.rst").read(),
url="https://github.com/IndicoDataSolutions/indicoio-python",
author="Alec Radford, Slater Victoroff, Aidan McLaughlin, Madison May, Anne Carlson",
author_email="engineering@indico.io",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
],
setup_requires=[
"six >= 1.3.0",
"pillow >= 2.8.1"
],
tests_require=[
"mock >= 1.3.0, < 2.0.0",
"nose >= 1.0"
],
test_suite="nose.collector",
install_requires=REQUIREMENTS
)