From ac6adfb0ceda01acc677f97468aeb972151faa89 Mon Sep 17 00:00:00 2001 From: Slater-Victoroff Date: Wed, 12 Mar 2014 00:23:18 -0400 Subject: [PATCH] Added packaging bits --- IndicoIo/__init__.py | 0 IndicoIo/images/__init__.py | 0 IndicoIo/speech/__init__.py | 0 IndicoIo/text/__init__.py | 0 README | 4 ++++ setup.py | 15 +++++++++++++++ 6 files changed, 19 insertions(+) create mode 100644 IndicoIo/__init__.py create mode 100644 IndicoIo/images/__init__.py create mode 100644 IndicoIo/speech/__init__.py create mode 100644 IndicoIo/text/__init__.py create mode 100644 README create mode 100644 setup.py diff --git a/IndicoIo/__init__.py b/IndicoIo/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/IndicoIo/images/__init__.py b/IndicoIo/images/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/IndicoIo/speech/__init__.py b/IndicoIo/speech/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/IndicoIo/text/__init__.py b/IndicoIo/text/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/README b/README new file mode 100644 index 0000000..1d5fb5f --- /dev/null +++ b/README @@ -0,0 +1,4 @@ +IndicoIo-python +=============== + +Python repository for Indico API wrapper diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..5a7ef0c --- /dev/null +++ b/setup.py @@ -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 , Slater Victoroff ", +)