Skip to content

Commit

Permalink
Added a setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobian committed Apr 10, 2011
1 parent 110327d commit 8cfa717
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
@@ -1,2 +1,4 @@
*.egg-info
*.pyc
.coverage
*.pyc
dist/
36 changes: 36 additions & 0 deletions setup.py
@@ -0,0 +1,36 @@
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
name = 'django-pjax',
version = '1.0',
description = 'A Django helper for jQuery-PJAX.',
license = 'BSD',
long_description = read('README.rst'),
url = 'https://github.com/jacobian/django-pjax',

author = 'Jacob Kaplan-Moss',
author_email = 'jacob@jacobian.org',

py_modules = ['djpjax'],
install_requires = ['django>=1.3'],

classifiers = (
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python',
),
)

0 comments on commit 8cfa717

Please sign in to comment.