Skip to content

Commit cfc0d13

Browse files
author
quantra
committed
0.1.0
1 parent dd80fb0 commit cfc0d13

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,3 +329,5 @@ morello_apps/media/
329329
.pypirc
330330
.shypypi
331331
/postgres_data
332+
/dist
333+
/django_lazy_srcset.egg-info

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ dist: clean ## builds source and wheel package
5454
# todo when tests exist add coverage to dependencies here as well as dist
5555
# todo consider automating commit, tag and push?
5656
release: dist ## package and upload a release, to make a new release first update the version number in setup.cfg
57-
twine upload --config-file .pypirc --repository shy dist/*
57+
twine upload --config-file .pypirc dist/*
5858
@echo "Package published to pypi! Now commit changes and push."
5959

6060
backupdb: docker_up ## Backup the db to postgres_backups dir

README.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ Install with pip:
2424
Add ``"imagekit"`` and ``"lazy_srcset"`` to ``INSTALLED_APPS``:
2525

2626
.. code-block:: python
27-
:caption: settings.py
2827
2928
INSTALLED_APPS = [
3029
...
@@ -36,7 +35,6 @@ Add ``"imagekit"`` and ``"lazy_srcset"`` to ``INSTALLED_APPS``:
3635
Configure your breakpoints and stuff:
3736

3837
.. code-block:: python
39-
:caption: settings.py
4038
4139
LAZY_SRCSET = {
4240
"default": {

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ name = django-lazy-srcset
44
version = 0.1.0
55
description = Lazy srcset and image generation for Django. Minimum effort required. No database required.
66
long_description = file:README.rst
7+
long_description_content_type = text/x-rst
78
author = Vince Coleman
89
author_email = [email protected]
910
license = MIT

0 commit comments

Comments
 (0)