Added packaging bits

This commit is contained in:
Slater-Victoroff
2014-03-12 00:23:18 -04:00
parent ebd9beb515
commit ac6adfb0ce
6 changed files with 19 additions and 0 deletions
View File
View File
View File
View File
+4
View File
@@ -0,0 +1,4 @@
IndicoIo-python
===============
Python repository for Indico API wrapper
+15
View File
@@ -0,0 +1,15 @@
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>",
)