django-authority/setup.py

37 lines
1.2 KiB
Python
Raw Normal View History

2009-07-09 23:09:42 +00:00
import os
2009-06-08 10:06:14 +00:00
from setuptools import setup, find_packages
2009-07-09 23:09:42 +00:00
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
2009-06-08 10:06:14 +00:00
setup(
name='django-authority',
2009-07-28 15:47:12 +00:00
version='0.4',
2009-06-08 10:06:14 +00:00
description="A Django app that provides generic per-object-permissions for Django's auth app.",
2009-07-09 23:09:42 +00:00
long_description=read('README'),
2009-06-08 10:06:14 +00:00
author='Jannis Leidel',
author_email='jannis@leidel.info',
2009-07-09 23:09:42 +00:00
license='BSD',
2009-06-08 10:06:14 +00:00
url='http://bitbucket.org/jezdez/django-authority/',
2009-07-09 23:09:42 +00:00
download_url='http://bitbucket.org/jezdez/django-authority/downloads/',
Moved authority app from src/ to root directory --HG-- rename : src/authority/__init__.py => authority/__init__.py rename : src/authority/admin.py => authority/admin.py rename : src/authority/decorators.py => authority/decorators.py rename : src/authority/exceptions.py => authority/exceptions.py rename : src/authority/fixtures/tests.json => authority/fixtures/tests.json rename : src/authority/forms.py => authority/forms.py rename : src/authority/managers.py => authority/managers.py rename : src/authority/models.py => authority/models.py rename : src/authority/permissions.py => authority/permissions.py rename : src/authority/sites.py => authority/sites.py rename : src/authority/templates/admin/edit_inline/action_tabular.html => authority/templates/admin/edit_inline/action_tabular.html rename : src/authority/templates/admin/permission_change_form.html => authority/templates/admin/permission_change_form.html rename : src/authority/templates/authority/403.html => authority/templates/authority/403.html rename : src/authority/templates/authority/permission_delete_link.html => authority/templates/authority/permission_delete_link.html rename : src/authority/templates/authority/permission_form.html => authority/templates/authority/permission_form.html rename : src/authority/templates/authority/permission_request_approve_link.html => authority/templates/authority/permission_request_approve_link.html rename : src/authority/templates/authority/permission_request_delete_link.html => authority/templates/authority/permission_request_delete_link.html rename : src/authority/templatetags/__init__.py => authority/templatetags/__init__.py rename : src/authority/templatetags/permissions.py => authority/templatetags/permissions.py rename : src/authority/tests.py => authority/tests.py rename : src/authority/urls.py => authority/urls.py rename : src/authority/views.py => authority/views.py rename : src/authority/widgets.py => authority/widgets.py
2010-01-07 17:00:41 +00:00
packages=find_packages(),
2009-06-08 10:06:14 +00:00
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
package_data = {
'authority': [
2010-01-15 21:41:11 +00:00
'fixtures/test.json',
2009-06-08 10:06:14 +00:00
'templates/authority/*.html',
2009-07-09 23:09:42 +00:00
'templates/admin/edit_inline/action_tabular.html',
'templates/admin/permission_change_form.html',
2009-06-08 10:06:14 +00:00
]
},
zip_safe=False,
)