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
1bebe4aa
authored
Mar 13, 2013
by
Florian Apolloner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial cleanup.
parent
5dc1176f
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
14 additions
and
57 deletions
+14
-57
.travis.yml
+0
-8
AUTHORS
+1
-0
CHANGES.rst
+7
-0
LICENSE
+0
-0
README.rst
+1
-1
setup.cfg
+2
-0
setup.py
+2
-3
taggit/__init__.py
+1
-1
tox.ini
+0
-44
No files found.
.travis.yml
View file @
1bebe4aa
...
@@ -17,11 +17,3 @@ script:
...
@@ -17,11 +17,3 @@ script:
notifications
:
notifications
:
email
:
false
email
:
false
matrix
:
exclude
:
-
python
:
"
3.2"
env
:
DJANGO=django==1.4.5 --use-mirrors
-
python
:
"
3.2"
env
:
DJANGO=django==1.3.7 --use-mirrors
AUTHORS
.txt
→
AUTHORS
View file @
1bebe4aa
...
@@ -12,3 +12,4 @@ Frank Wiles
...
@@ -12,3 +12,4 @@ Frank Wiles
Jonathan Buchanan
Jonathan Buchanan
idle sign <idlesign@yandex.ru>
idle sign <idlesign@yandex.ru>
Charles Leifer
Charles Leifer
Florian Apolloner <apollo13@apolloner.eu>
CHANGES.rst
0 → 100644
View file @
1bebe4aa
Version 0.10 (unreleased)
-------------------------
Version 0.9.3
-------------
* Sorry, no changelog :(
LICENSE
.txt
→
LICENSE
View file @
1bebe4aa
File moved
README.
md
→
README.
rst
View file @
1bebe4aa
...
@@ -28,7 +28,7 @@ Then you can use the API like so::
...
@@ -28,7 +28,7 @@ Then you can use the API like so::
Tags will show up for you automatically in forms and the admin.
Tags will show up for you automatically in forms and the admin.
``django-taggit``
requires Django 1.
1
or greater.
``django-taggit`` requires Django 1.
3
or greater.
For more info checkout out the documentation. And for questions about usage or
For more info checkout out the documentation. And for questions about usage or
development you can contact the
development you can contact the
...
...
setup.cfg
0 → 100644
View file @
1bebe4aa
[wheel]
universal=1 # use py2.py3 tag for pure-python dist
setup.py
View file @
1bebe4aa
import
os
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_packages
from
taggit
import
VERSION
from
taggit
import
VERSION
f
=
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'README.md'
)
)
f
=
open
(
'README.rst'
)
readme
=
f
.
read
()
readme
=
f
.
read
()
f
.
close
()
f
.
close
()
...
@@ -24,7 +23,7 @@ setup(
...
@@ -24,7 +23,7 @@ setup(
],
],
},
},
classifiers
=
[
classifiers
=
[
'Development Status ::
4 - Bet
a'
,
'Development Status ::
3 - Alph
a'
,
'Environment :: Web Environment'
,
'Environment :: Web Environment'
,
'Intended Audience :: Developers'
,
'Intended Audience :: Developers'
,
'License :: OSI Approved :: BSD License'
,
'License :: OSI Approved :: BSD License'
,
...
...
taggit/__init__.py
View file @
1bebe4aa
VERSION
=
(
0
,
9
,
3
)
VERSION
=
(
0
,
10
,
0
,
'alpha'
,
0
)
tox.ini
deleted
100644 → 0
View file @
5dc1176f
[tox]
envlist
=
py24,
py25,
py26,
py27,
pypy,
py24-trunk,
py25-trunk,
py26-trunk,
py27-trunk,
pypy-trunk,
docs
[testenv]
commands
=
python
setup.py
test
deps
=
django
=
=1.2.4
# We lied here, these are not really trunk, but rather the 1.3 beta-1, which
# is close enough.
[testenv:py24-trunk]
basepython
=
python2.4
deps
=
http://www.djangoproject.com/download/1.3-rc-1/tarball/
[testenv:py25-trunk]
basepython
=
python2.5
deps
=
http://www.djangoproject.com/download/1.3-rc-1/tarball/
[testenv:py26-trunk]
basepython
=
python2.6
deps
=
http://www.djangoproject.com/download/1.3-rc-1/tarball/
[testenv:py27-trunk]
basepython
=
python2.7
deps
=
http://www.djangoproject.com/download/1.3-rc-1/tarball/
[testenv:pypy-trunk]
basepython
=
pypy
deps
=
http://www.djangoproject.com/download/1.3-rc-1/tarball/
[testenv:docs]
changedir
=
docs
deps
=
sphinx
commands
=
sphinx-build
-W
-b
html
-d
{envtmpdir}/doctrees
.
{envtmpdir}/html
sphinx-build
-W
-b
linkcheck
-d
{envtmpdir}/doctrees
.
{envtmpdir}/linkcheck
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