Skip to content

Commit

Permalink
Use correct filename.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Kaskel committed Jun 9, 2011
1 parent 8e2d9a4 commit 75b3ce0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
import os
from setuptools import setup, find_packages

version = '0.1.0a1'
VERSION = '0.1.0a1'
README_FILENAME = 'README.rst'

readme = open(os.path.join(os.path.dirname(__file__), 'README.md'))
readme = open(os.path.join(os.path.dirname(__file__), README_FILENAME))
long_description = readme.read()
readme.close()

setup(
name='django-cbv-formpreview',
version=version,
version=VERSION,
author='Ryan Kaskel',
author_email='dev@ryankaskel.com',
url='https://github.com/ryankask/django-cbv-formpreview',
Expand Down

0 comments on commit 75b3ce0

Please sign in to comment.