Skip to content

Commit

Permalink
adding a proper version number. adding setup.py in preparation of a 0…
Browse files Browse the repository at this point in the history
….1 release.
  • Loading branch information
arneb committed May 8, 2009
1 parent 4fc7b45 commit 3be09f2
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
5 changes: 5 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,5 @@
include AUTHORS
include LICENSE
include README
recursive-include docs *
recursive-include campaign/templates *
2 changes: 2 additions & 0 deletions campaign/__init__.py
@@ -0,0 +1,2 @@
VERSION = (0, 1)
__version__ = '.'.join(map(str, VERSION))
22 changes: 22 additions & 0 deletions setup.py
@@ -0,0 +1,22 @@
from distutils.core import setup

setup(
name='django-campaign',
version=__import__('campaign').__version__,
description='A basic newsletter app for the Django webframework',
author='Arne Brodowski',
author_email='arne@rcs4u.de',
url='http://code.google.com/p/django-campaign/',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
packages = (
'campaign',
),
)

0 comments on commit 3be09f2

Please sign in to comment.