Skip to content

Commit 7cbc71d

Browse files
authored
Merge pull request #539 from leukeleu/patch-2
Update readme, list trove
2 parents a02cfdd + 088d60d commit 7cbc71d

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Contributors
2929
* `Sean Bell`_
3030
* `Saul Shanabrook`_
3131
* `Venelin Stoykov`_
32+
* `Jaap Roes`_
3233

3334
.. _Justin Driscoll: http://github.com/jdriscoll
3435
.. _HZDG: http://hzdg.com
@@ -51,3 +52,4 @@ Contributors
5152
.. _Sean Bell: https://github.com/seanbell
5253
.. _Saul Shanabrook: https://github.com/saulshanabrook
5354
.. _Venelin Stoykov: https://github.com/vstoykov
55+
.. Jaap Roes: https://github.com/jaap3

README.rst

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
|Build Status|_
22

3-
.. |Build Status| image:: https://travis-ci.org/matthewwithanm/django-imagekit.svg?branch=develop
4-
.. _Build Status: https://travis-ci.org/matthewwithanm/django-imagekit
3+
.. |Build Status| image:: https://github.com/matthewwithanm/django-imagekit/actions/workflows/python.yml/badge.svg?branch=develop
4+
.. _Build Status: https://github.com/matthewwithanm/django-imagekit/actions/workflows/python.yml
55

66
ImageKit is a Django app for processing images. Need a thumbnail? A
77
black-and-white version of a user-uploaded image? ImageKit will make them for
8-
you. If you need to programatically generate one image from another, you need
8+
you. If you need to programmatically generate one image from another, you need
99
ImageKit.
1010

1111
ImageKit comes with a bunch of image processors for common tasks like resizing
@@ -22,17 +22,11 @@ __ https://github.com/fish2000/instakit
2222
Installation
2323
============
2424

25-
1. Install `PIL`_ or `Pillow`_. (If you're using an ``ImageField`` in Django,
25+
1. Install `Pillow`_. (If you're using an ``ImageField`` in Django,
2626
you should have already done this.)
2727
2. ``pip install django-imagekit``
28-
3. Add ``'imagekit'`` to your ``INSTALLED_APPS`` list in your project's settings.py
28+
3. Add ``'imagekit'`` to your ``INSTALLED_APPS`` list in your project's ``settings.py``
2929

30-
.. note:: If you've never seen Pillow before, it considers itself a
31-
more-frequently updated "friendly" fork of PIL that's compatible with
32-
setuptools. As such, it shares the same namespace as PIL does and is a
33-
drop-in replacement.
34-
35-
.. _`PIL`: http://pypi.python.org/pypi/PIL
3630
.. _`Pillow`: http://pypi.python.org/pypi/Pillow
3731

3832

@@ -447,7 +441,7 @@ AdminThumbnail can even use a custom template. For more information, see
447441
Management Commands
448442
-------------------
449443

450-
ImageKit has one management command—`generateimages`—which will generate cache
444+
ImageKit has one management command—``generateimages``—which will generate cache
451445
files for all of your registered image generators. You can also pass it a list
452446
of generator ids in order to generate images selectively.
453447

@@ -473,9 +467,8 @@ people, open a pull request so we can take a look!
473467
You can also check out our list of `open, contributor-friendly issues`__ for
474468
ideas.
475469

476-
Check out our `contributing guidelines`__ for more information about pitching in
470+
Check out our `contributing guidelines`_ for more information about pitching in
477471
with ImageKit.
478472

479-
480473
__ https://github.com/matthewwithanm/django-imagekit/issues?labels=contributor-friendly&state=open
481-
__ https://github.com/matthewwithanm/django-imagekit/blob/develop/CONTRIBUTING.rst
474+
.. _`contributing guidelines`: https://github.com/matthewwithanm/django-imagekit/blob/develop/CONTRIBUTING.rst

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ def exec_file(filepath, globalz=None, localz=None):
6767
'Programming Language :: Python :: 3.3',
6868
'Programming Language :: Python :: 3.4',
6969
'Programming Language :: Python :: 3.5',
70+
'Programming Language :: Python :: 3.6',
71+
'Programming Language :: Python :: 3.7',
72+
'Programming Language :: Python :: 3.8',
73+
'Programming Language :: Python :: 3.9',
74+
'Programming Language :: Python :: 3.10',
7075
'Topic :: Utilities'
7176
],
7277
)

0 commit comments

Comments
 (0)