-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
70 changed files
with
3,927 additions
and
1,124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
*.pyc | ||
*.pyc | ||
*.egg-info/ | ||
example/AJAXSELECTS/* | ||
example/AJAXSELECTS/* | ||
.tox | ||
htmlcov | ||
.coverage | ||
docs/_build | ||
example/ajax_select | ||
example/ajax_selects_example | ||
dist | ||
MANIFEST |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
language: python | ||
sudo: false | ||
env: | ||
- TOX_ENV=py27-flake8 | ||
- TOX_ENV=py34-flake8 | ||
- TOX_ENV=py27-dj15 | ||
- TOX_ENV=py27-dj16 | ||
- TOX_ENV=py32-dj15 | ||
- TOX_ENV=py32-dj16 | ||
- TOX_ENV=py33-dj15 | ||
- TOX_ENV=py33-dj16 | ||
- TOX_ENV=py27-dj17 | ||
- TOX_ENV=py27-dj18 | ||
- TOX_ENV=py27-dj19 | ||
- TOX_ENV=py34-dj17 | ||
- TOX_ENV=py34-dj18 | ||
- TOX_ENV=py34-dj19 | ||
install: | ||
- pip install -r requirements-test.txt | ||
script: | ||
- tox -e $TOX_ENV |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
recursive-include example *.py *.sh *.txt | ||
prune example/AJAXSELECTS | ||
prune example/ajax_select | ||
recursive-include tests *.py | ||
include README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
.PHONY: clean-pyc clean-build | ||
|
||
help: | ||
@echo "test - run tests quickly with the currently installed Django" | ||
@echo "clean - remove build artifacts" | ||
@echo "lint - check style with flake8" | ||
@echo "release - package and upload a release" | ||
@echo "sdist - package" | ||
# @echo "docs - generate Sphinx HTML documentation, including API docs" | ||
|
||
clean: clean-build clean-pyc | ||
|
||
clean-build: | ||
rm -fr build/ | ||
rm -fr dist/ | ||
rm -fr *.egg-info | ||
|
||
clean-pyc: | ||
find . -name '*.pyc' -exec rm -f {} + | ||
find . -name '*.pyo' -exec rm -f {} + | ||
find . -name '*~' -exec rm -f {} + | ||
|
||
lint: | ||
flake8 . | ||
|
||
test: | ||
tox | ||
|
||
# docs: | ||
# rm -f docs/django-ajax-selects.rst | ||
# rm -f docs/modules.rst | ||
# sphinx-apidoc -o docs/ django-ajax-selects | ||
# $(MAKE) -C docs clean | ||
# $(MAKE) -C docs html | ||
# open docs/_build/html/index.html | ||
|
||
release: clean | ||
python setup.py sdist upload | ||
python setup.py bdist_wheel upload | ||
|
||
sdist: clean | ||
python setup.py sdist | ||
ls -l dist |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.