-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
26 lines (24 loc) · 868 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='django-rest-invitations',
version='0.1.2',
author='Marco Federighi',
author_email='[email protected]',
url='http://github.com/fmarco/django-rest-invitations',
description='Create a set of REST API endpoints to handle invitations',
packages=find_packages(),
keywords=['django', 'invitation', 'django-allauth', 'invite', 'rest', 'django-rest-framework', 'drf', 'invitations'],
zip_safe=False,
install_requires=[
'djangorestframework>=3.10',
'django-invitations==1.9.3'
],
include_package_data=True,
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)