Merge lp:~salgado/django-group-access/packaging into lp:django-group-access

Proposed by Guilherme Salgado
Status: Merged
Merged at revision: 5
Proposed branch: lp:~salgado/django-group-access/packaging
Merge into: lp:django-group-access
Prerequisite: lp:~salgado/django-group-access/refactor
Diff against target: 43 lines (+30/-0)
1 file modified
setup.py (+30/-0)
To merge this branch: bzr merge lp:~salgado/django-group-access/packaging
Reviewer Review Type Date Requested Status
Nicola Heald Pending
Review via email: mp+76266@code.launchpad.net

Description of the change

Move everything under django_group_access and add a setup.py script.

There are a few things left to be fixed on setup.py but I can do that once I know what to put there. :)

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== added directory 'django_group_access'
=== renamed file '__init__.py' => 'django_group_access/__init__.py'
=== renamed file 'admin.py' => 'django_group_access/admin.py'
=== renamed directory 'migrations' => 'django_group_access/migrations'
=== renamed file 'models.py' => 'django_group_access/models.py'
=== renamed directory 'sandbox' => 'django_group_access/sandbox'
=== renamed file 'tests.py' => 'django_group_access/tests.py'
=== renamed file 'testutil.py' => 'django_group_access/testutil.py'
=== renamed file 'views.py' => 'django_group_access/views.py'
=== added file 'setup.py'
--- setup.py 1970-01-01 00:00:00 +0000
+++ setup.py 2011-09-20 17:49:25 +0000
@@ -0,0 +1,30 @@
1#!/usr/bin/env python
2
3from setuptools import setup
4
5
6setup(
7 name='django-group-access',
8 author="Foo Bar", # FIXME!
9 author_email="foo.bar@example.com", # FIXME!
10 description=("Base Django model to add access control, via groups, to "
11 "objects."),
12 url='https://launchpad.net/django-group-access',
13 license='LGPLv3', # FIXME!
14 keywords=['django', 'ownership', 'models'],
15 version="0.0.1",
16 classifiers=[
17 "Development Status :: 4 - Beta",
18 'Environment :: Web Environment',
19 'Framework :: Django',
20 'Intended Audience :: Developers',
21 "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
22 "Operating System :: OS Independent",
23 "Programming Language :: Python :: 2.6",
24 "Programming Language :: Python :: 2.7",
25 ],
26 zip_safe=True,
27 packages=['django_group_access'],
28 # dependencies
29 install_requires=['django >= 1.0'], # XXX: Is this correct?
30)

Subscribers

People subscribed via source and target branches