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

Subscribers

People subscribed via source and target branches