File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -329,3 +329,5 @@ morello_apps/media/
329
329
.pypirc
330
330
.shypypi
331
331
/postgres_data
332
+ /dist
333
+ /django_lazy_srcset.egg-info
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ dist: clean ## builds source and wheel package
54
54
# todo when tests exist add coverage to dependencies here as well as dist
55
55
# todo consider automating commit, tag and push?
56
56
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/*
58
58
@echo " Package published to pypi! Now commit changes and push."
59
59
60
60
backupdb : docker_up # # Backup the db to postgres_backups dir
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ Install with pip:
24
24
Add ``"imagekit" `` and ``"lazy_srcset" `` to ``INSTALLED_APPS ``:
25
25
26
26
.. code-block :: python
27
- :caption: settings.py
28
27
29
28
INSTALLED_APPS = [
30
29
...
@@ -36,7 +35,6 @@ Add ``"imagekit"`` and ``"lazy_srcset"`` to ``INSTALLED_APPS``:
36
35
Configure your breakpoints and stuff:
37
36
38
37
.. code-block :: python
39
- :caption: settings.py
40
38
41
39
LAZY_SRCSET = {
42
40
" default" : {
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ name = django-lazy-srcset
4
4
version = 0.1.0
5
5
description = Lazy srcset and image generation for Django. Minimum effort required. No database required.
6
6
long_description = file:README.rst
7
+ long_description_content_type = text/x-rst
7
8
author = Vince Coleman
8
9
9
10
license = MIT
You can’t perform that action at this time.
0 commit comments