mirror of
https://github.com/sprockets/cookiecutter-sprockets.git
synced 2024-11-23 19:29:52 +00:00
9a9b375d30
- Add a .editorconfig file (See http://editorconfig.org) - Add wheel distribution - Remove sprockets requirement
27 lines
458 B
YAML
27 lines
458 B
YAML
%YAML 1.1
|
|
---
|
|
language: python
|
|
python:
|
|
- 2.6
|
|
- 2.7
|
|
- pypy
|
|
- 3.2
|
|
- 3.3
|
|
- 3.4
|
|
install:
|
|
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi
|
|
- pip install -r test-requirements.txt
|
|
- pip install -e .
|
|
script: nosetests
|
|
after_success:
|
|
- coveralls
|
|
deploy:
|
|
distributions: sdist bdist_wheel
|
|
provider: pypi
|
|
on:
|
|
python: 2.7
|
|
tags: true
|
|
all_branches: true
|
|
user: sprockets
|
|
password:
|
|
secure: [REPLACE-ME]
|