add setup.py

This commit is contained in:
Luke Hatcher 2012-08-14 01:30:26 -04:00
parent 0dbcbea100
commit 02d9fc0518
3 changed files with 27 additions and 0 deletions

1
MANIFEST.in Normal file
View file

@ -0,0 +1 @@
include README LICENSE

25
setup.py Normal file
View file

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

View file

@ -0,0 +1 @@
__version__ = "1.0b1"