-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 888 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 888 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
30
31
32
"""
Setup for indico apis
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="IndicoIo",
version='0.4.1',
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>
""",
)