forked from jazzband/django-invitations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 1.18 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
setup(
name='django-invitations',
packages=find_packages(),
package_data={'invitations': ['templates/*.*']},
include_package_data=True,
zip_safe=False,
version='1.2',
description='Django invitation integration for django-allauth',
author='https://github.com/bee-keeper',
author_email='[email protected]',
url='https://github.com/bee-keeper/django-invitations.git',
download_url='https://github.com/bee-keeper/django-invitations/tarball/1.2',
keywords=['django', 'invitation', 'django-allauth', 'invite'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: Web Environment',
'Topic :: Internet',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Framework :: Django',
],
install_requires=[
'django-allauth>=0.22',
'django-braces>=1.8.0',
],
)