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 ", +)