Skip to content

Commit

Permalink
Add a simple setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
sjl committed Mar 1, 2010
1 parent e59250f commit 3c5802b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions setup.py
@@ -0,0 +1,28 @@
import os
from setuptools import setup, find_packages


README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.markdown')
description = 'django-goodfields makes creating good form fields easy.'
long_description = os.path.exists(README_PATH) and open(README_PATH).read() or description

setup(
name='django-goodfields',
version='0.0.1',
description=description,
long_description=long_description,
author='Steve Losh',
author_email='steve@stevelosh.com',
url='http://bitbucket.org/dwaiter/django-goodfields/',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Operating System :: OS Independent',
'Framework :: Django',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
],
)

0 comments on commit 3c5802b

Please sign in to comment.