1
0

Public release

This commit is contained in:
2021-07-30 21:29:14 +02:00
commit 8eddb50cf1
30 changed files with 1233 additions and 0 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
PHONY: clean lint test build publish
clean:
rm -rf build/ dist/ django_changelist_inline.egg-info/
lint:
flake8 django_changelist_inline/ testing/ tests/ settings.py setup.py
test:
pytest
build:
python setup.py build sdist bdist_wheel
publish:
twine upload --repository pypi --skip-existing dist/*