Files
IndicoIo-python/setup.py
T
Charlotte-Sommerville 15f0da9b26 setup changes
2014-05-05 10:50:51 -04:00

16 lines
481 B
Python

try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = "IndicoIo",
version = '0.2.2',
packages = ["IndicoIo",],
license = "MIT License (See LICENSE)",
long_description = open("README.md").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>",
)