david / django-invitation

Built on top of django-registration, it restricts registration to a given number of invited person per active user (strategy introduced by GMail to involve 2.0 users).

Clone this repository (size: 60.7 KB): HTTPS / SSH
$ hg clone http://code.welldev.org/django-invitation

Changed (Δ1.1 KB):

raw changeset »

setup.py (27 lines added, 0 lines removed)

Up to file-list setup.py:

1
from setuptools import setup, find_packages
2
 
3
setup(
4
    name='django-invitation',
5
    version='1.0',
6
    description='Built on top of django-registration, it restricts registration to a given number of invited person per active user (strategy introduced by GMail to involve 2.0 users).',
7
    author='David Larlet',
8
    author_email='david@larlet.fr',
9
    url='http://code.welldev.org/django-invitation/',
10
    packages=find_packages(),
11
    classifiers=[
12
        'Development Status :: 4 - Beta',
13
        'Environment :: Web Environment',
14
        'Intended Audience :: Developers',
15
        'License :: OSI Approved :: BSD License',
16
        'Operating System :: OS Independent',
17
        'Programming Language :: Python',
18
        'Framework :: Django',
19
    ],
20
    # Make setuptools include all data files under version control,
21
    # svn and CVS by default
22
    include_package_data=True,
23
    zip_safe=False,
24
    # Tells setuptools to download setuptools_hg before running setup.py so
25
    # it can find the data files under Hg version control.
26
    setup_requires=['setuptools_hg'],
27
)