Skip to content

Commit

Permalink
Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mvantellingen committed Nov 28, 2011
1 parent a63cc0e commit a71f725
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
from setuptools import setup, find_packages

install_requires = [
'Django>=1.3',
]

setup(
name='auth_remember',
version='0.1',
url='',
license='MIT',
author='Michael van Tellingen',
author_email='m.vantellingen@auto-interactive.nl',
description='Django rememberme app',
long_description=__doc__,
install_requires=install_requires,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development'
],
packages=find_packages(exclude=('example_project')),
)

0 comments on commit a71f725

Please # to comment.