-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 931 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
from distutils.core import setup
setup(name='django-userauthcode',
version='0.1',
description='Generate Django user authentication codes to verify email addresses and activate user accounts.',
author='Manuel Badzong',
author_email='manuel@andev.ch',
url='https://github.com/badzong/django-userauthcode',
py_modules=['userauthcode',],
platforms=['any'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)