mirror of
https://github.com/sprockets/cookiecutter-sprockets.git
synced 2025-03-26 17:00:15 -09:00
Multiple updates
- Speed up travis testing - Fix typo in index.rst - Add sprockets to requirements.txt - Remove version importing in setup.py
This commit is contained in:
parent
58df8fe89e
commit
9b8049d8a5
4 changed files with 4 additions and 5 deletions
sprockets.{{cookiecutter.project_name}}
|
@ -9,7 +9,7 @@ python:
|
|||
- 3.3
|
||||
- 3.4
|
||||
install:
|
||||
- pip install -r dev-requirements.txt
|
||||
- pip install -r test-requirements.txt
|
||||
- pip install -e .
|
||||
script: nosetests
|
||||
after_success:
|
||||
|
|
|
@ -16,7 +16,7 @@ and can be installed via ``pip`` or ``easy_install``:
|
|||
|
||||
Requirements
|
||||
------------
|
||||
@TODO: Put full requirements list here, should match requirements.text
|
||||
@TODO: Put full requirements list here, should match requirements.txt
|
||||
- `sprockets <https://github.com/sprockets/sprockets>`_
|
||||
|
||||
API Documentation
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
sprockets<2
|
|
@ -3,8 +3,6 @@ import sys
|
|||
|
||||
import setuptools
|
||||
|
||||
from sprockets.{{cookiecutter.project_name}} import __version__
|
||||
|
||||
|
||||
def read_requirements_file(req_name):
|
||||
requirements = []
|
||||
|
@ -31,7 +29,7 @@ if sys.version_info < (3, 0):
|
|||
|
||||
setuptools.setup(
|
||||
name='sprockets.{{cookiecutter.project_name}}',
|
||||
version=__version__,
|
||||
version='0.0.0',
|
||||
description='{{cookiecutter.description}}',
|
||||
long_description=codecs.open('README.rst', encoding='utf-8').read(),
|
||||
url='https://github.com/{{cookiecutter.git_org}}/sprockets.{{cookiecutter.project_name}}.git',
|
||||
|
|
Loading…
Add table
Reference in a new issue