mirror of
https://github.com/wassname/IndicoIo-python.git
synced 2026-07-12 00:50:38 +08:00
language detection added
This commit is contained in:
@@ -1,22 +1,32 @@
|
||||
"""
|
||||
Setup for indicoio apis
|
||||
"""
|
||||
try:
|
||||
from setuptools import setup
|
||||
except ImportError:
|
||||
from distutils.core import setup
|
||||
|
||||
setup(
|
||||
name = "IndicoIo",
|
||||
version = '0.2.11',
|
||||
packages = [
|
||||
"IndicoIo",
|
||||
"IndicoIo.text",
|
||||
"IndicoIo.images",
|
||||
"IndicoIo.utils",
|
||||
"tests",
|
||||
],
|
||||
description = "A Python Wrapper for IndicoIo. 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>",
|
||||
name="IndicoIo",
|
||||
version='0.3.3',
|
||||
packages=[
|
||||
"IndicoIo",
|
||||
"IndicoIo.text",
|
||||
"IndicoIo.images",
|
||||
"IndicoIo.utils",
|
||||
"tests",
|
||||
],
|
||||
description="""
|
||||
A Python Wrapper for IndicoIo.
|
||||
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>
|
||||
""",
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user