-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (25 loc) · 812 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
27
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-generic-permissions',
version='0.1.0',
description='A generic permission framework for Django',
author='Garry Polley',
author_email='garrympolley@gmail.com',
url='https://github.com/garrypolley/django_generic_permissions',
packages=find_packages(exclude=('tests', 'examples')),
include_package_data=True,
zip_safe=False,
install_requires=[
'django>=1.4'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
],
)