diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..c41487fe --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include README LICENSE diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..6c5314cc --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python + +from setuptools import setup, find_packages + +import symposion + + +setup( + name="symposion", + author="James Tauber", + author_email="jtauber@jtauber.com", + version=symposion.__version__, + description="A collection of Django apps for conference websites.", + url="http://pinax.github.com/symposion/", + packages=find_packages(exclude=["symposion_project"]), + include_package_data=True, + classifiers=( + "Development Status :: 4 - Beta", + "Programming Language :: Python", + "Framework :: Django", + "Intended Audience :: Developers", + "Natural Language :: English", + "License :: OSI Approved :: MIT License", + ), +) diff --git a/symposion/__init__.py b/symposion/__init__.py index e69de29b..52799e96 100644 --- a/symposion/__init__.py +++ b/symposion/__init__.py @@ -0,0 +1 @@ +__version__ = "1.0b1"