mirror of
https://github.com/jazzband/django-authority.git
synced 2026-05-04 13:44:43 +00:00
refs #11: updated setup.py
This commit is contained in:
parent
a28726ffc3
commit
8dc9710ba3
1 changed files with 10 additions and 1 deletions
11
setup.py
11
setup.py
|
|
@ -1,13 +1,17 @@
|
|||
import os
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
def read(fname):
|
||||
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
||||
|
||||
setup(
|
||||
name='django-authority',
|
||||
version='0.4',
|
||||
description="A Django app that provides generic per-object-permissions for Django's auth app.",
|
||||
description=(
|
||||
"A Django app that provides generic per-object-permissions "
|
||||
"for Django's auth app."
|
||||
),
|
||||
long_description=read('README'),
|
||||
author='Jannis Leidel',
|
||||
author_email='jannis@leidel.info',
|
||||
|
|
@ -22,7 +26,12 @@ setup(
|
|||
'License :: OSI Approved :: BSD License',
|
||||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python',
|
||||
'Programming Language :: Python :: 2.6',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Framework :: Django',
|
||||
'Framework :: Django :: 1.3',
|
||||
'Framework :: Django :: 1.4',
|
||||
'Framework :: Django :: 1.5',
|
||||
],
|
||||
install_requires=['django', 'django-extensions', 'django-debug-toolbar'],
|
||||
package_data = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue