Files
IndicoIo-python/setup.py
T
2014-05-05 00:59:26 -04:00

16 lines
447 B
Python

try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = "IndicoIo",
version = '0.2.0',
packages = ["IndicoIo",],
license = "MIT License (See LICENSE)",
long_description = open("README.md").read(),
url = "http://www.indico.io",
author = "Alec Radford, Slater Victoroff",
author_email = "Alec Radford <alec@indicodatasolutions.com>, Slater Victoroff <slater@indicodatasolutions.com>",
)