Skip to content

Commit 706f0a6

Browse files
author
J. Cliff Dyer
committed
Basic cookiecutter install
0 parents  commit 706f0a6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+3102
-0
lines changed

.coveragerc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[run]
2+
branch = True
3+
data_file = .coverage
4+
source=celeryutils
5+
omit =
6+
test_settings
7+
*migrations*
8+
*admin.py
9+
*static*
10+
*templates*

.github/ISSUE_TEMPLATE.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
* edx-celeryutils version:
2+
* Django version:
3+
* Python version:
4+
* Operating System:
5+
6+
### Description
7+
8+
Describe what you were trying to get done.
9+
Tell us what happened, what went wrong, and what you expected to happen.
10+
11+
### What I Did
12+
13+
```
14+
Paste the command(s) you ran and the output.
15+
If there was a crash, please include the traceback here.
16+
```

.gitignore

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
*.py[cod]
2+
__pycache__
3+
4+
# C extensions
5+
*.so
6+
7+
# Packages
8+
*.egg
9+
*.egg-info
10+
dist
11+
build
12+
eggs
13+
parts
14+
bin
15+
var
16+
sdist
17+
develop-eggs
18+
.installed.cfg
19+
lib
20+
lib64
21+
22+
# Installer logs
23+
pip-log.txt
24+
25+
# Unit test / coverage reports
26+
.cache/
27+
.coverage
28+
.coverage.*
29+
.tox
30+
coverage.xml
31+
htmlcov/
32+
33+
# Translations
34+
*.mo
35+
36+
# IDEs and text editors
37+
*~
38+
*.swp
39+
.idea/
40+
.project
41+
.pycharm_helpers/
42+
.pydevproject
43+
44+
# The Silver Searcher
45+
.agignore
46+
47+
# OS X artifacts
48+
*.DS_Store
49+
50+
# Logging
51+
log/
52+
logs/
53+
chromedriver.log
54+
ghostdriver.log
55+
56+
# Complexity
57+
output/*.html
58+
output/*/index.html
59+
60+
# Sphinx
61+
docs/_build
62+
docs/modules.rst
63+
docs/celeryutils.rst
64+
docs/celeryutils.*.rst
65+
66+
# Private requirements
67+
requirements/private.in
68+
requirements/private.txt
69+
70+
# tox environment temporary artifacts
71+
tests/__init__.py
72+
73+
# Development task artifacts
74+
default.db

.travis.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Config file for automatic testing at travis-ci.org
2+
3+
language: python
4+
5+
python:
6+
- 2.7
7+
- 3.5
8+
9+
env:
10+
- TOXENV=django18
11+
- TOXENV=django19
12+
- TOXENV=django110
13+
14+
matrix:
15+
include:
16+
- python: 3.5
17+
env: TOXENV=quality
18+
- python: 3.5
19+
env: TOXENV=docs
20+
21+
cache:
22+
- pip
23+
24+
install:
25+
- pip install -r requirements/travis.txt
26+
27+
script:
28+
- tox
29+
30+
after_success:
31+
- codecov
32+
33+
# Set password via "travis encrypt --add deploy.password"; for details, see
34+
# https://docs.travis-ci.com/user/deployment/pypi
35+
deploy:
36+
provider: pypi
37+
user: edx
38+
distributions: sdist bdist_wheel
39+
on:
40+
tags: true
41+
condition: '$TOXENV = quality'

.tx/config

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[main]
2+
host = https://www.transifex.com
3+
4+
[edx-platform.edx-celeryutils]
5+
file_filter = celeryutils/conf/locale/<lang>/LC_MESSAGES/django.po
6+
source_file = celeryutils/conf/locale/en/LC_MESSAGES/django.po
7+
source_lang = en
8+
type = PO
9+
10+
[edx-platform.edx-celeryutils-js]
11+
file_filter = celeryutils/conf/locale/<lang>/LC_MESSAGES/djangojs.po
12+
source_file = celeryutils/conf/locale/en/LC_MESSAGES/djangojs.po
13+
source_lang = en
14+
type = PO

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
J. Cliff Dyer <[email protected]>

CHANGELOG.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Change Log
2+
----------
3+
4+
..
5+
All enhancements and patches to cookiecutter-django-app will be documented
6+
in this file. It adheres to the structure of http://keepachangelog.com/ ,
7+
but in reStructuredText instead of Markdown (for ease of incorporation into
8+
Sphinx documentation and the PyPI description).
9+
10+
This project adheres to Semantic Versioning (http://semver.org/).
11+
12+
.. There should always be an "Unreleased" section for changes pending release.
13+
14+
Unreleased
15+
~~~~~~~~~~
16+
17+
[0.1.0] - 2017-01-31
18+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19+
20+
Added
21+
_____
22+
23+
* First release on PyPI.

0 commit comments

Comments
 (0)