Files
IndicoIo-python/setup.py
T
Slater-Victoroff ac6adfb0ce Added packaging bits
2014-03-12 00:23:18 -04:00

16 lines
447 B
Python

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