Files
IndicoIo-python/setup.py
T
Charlotte-Sommerville 8a7014b80a updated version
2014-05-05 11:11:08 -04:00

17 lines
585 B
Python

try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = "IndicoIo",
version = '0.2.5',
packages = ["IndicoIo",],
license = "MIT License (See LICENSE)",
long_description = open("README").read(),
url = "https://github.com/IndicoDataSolutions/IndicoIo-python",
author = "Alec Radford, Slater Victoroff",
author_email = "Alec Radford <alec@indicodatasolutions.com>, Slater Victoroff <slater@indicodatasolutions.com>",
py_modules = ['IndicoIo.text.sentiment', 'IndicoIo.images.fer', 'IndicoIo.images.facial_features']
)