Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
django-taggit
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Wiki
Members
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
83b520da
authored
15 years ago
by
Alex Gaynor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix readme and setup
parent
cd097f7f
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
0 deletions
+31
-0
README
+0
-0
README.txt
+5
-0
setup.py
+26
-0
No files found.
README
deleted
100644 → 0
View file @
cd097f7f
This diff is collapsed.
Click to expand it.
README.txt
0 → 100644
View file @
83b520da
django-taggit
=============
Is a simpler approach to tagging with Django. Just add a TagManager to your
model and go.
This diff is collapsed.
Click to expand it.
setup.py
View file @
83b520da
from
setuptools
import
setup
,
find_packages
f
=
open
(
'README.txt'
)
readme
=
f
.
read
()
f
.
close
()
setup
(
name
=
'django-taggit'
,
version
=
'0.1-pre'
,
description
=
'django-taggit is a reusable Django application for simple tagging.'
,
long_description
=
readme
,
author
=
'Alex Gaynor'
,
author_email
=
'alex.gaynor@gmail.com'
,
url
=
'http://github.com/alex/django-taggit/tree/master'
,
packages
=
find_packages
(),
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'
,
],
)
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment