mirror of
https://github.com/wassname/IndicoIo-python.git
synced 2026-06-27 16:10:34 +08:00
39 lines
1.0 KiB
Python
39 lines
1.0 KiB
Python
"""
|
|
Setup for indico apis
|
|
"""
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name="IndicoIo",
|
|
version='0.4.4',
|
|
packages=[
|
|
"indicoio",
|
|
"indicoio.text",
|
|
"indicoio.images",
|
|
"indicoio.utils",
|
|
"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").read(),
|
|
url="https://github.com/IndicoDataSolutions/indicoio-python",
|
|
author="Alec Radford, Slater Victoroff, Aidan McLaughlin",
|
|
author_email="""
|
|
Alec Radford <alec@indicodatasolutions.com>,
|
|
Slater Victoroff <slater@indicodatasolutions.com>,
|
|
Aidan McLaughlin <aidan@indicodatasolutions.com>
|
|
""",
|
|
install_requires=[
|
|
"requests >= 1.2.3",
|
|
"six >= 1.3.0",
|
|
"numpy >= 1.8.1",
|
|
"scikit-image >= 0.10.1"
|
|
],
|
|
)
|