forked from ailabs/django-auth-remember
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a63cc0e
commit a71f725
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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')), | ||
) |