Skip to content

Commit c18d694

Browse files
author
Aaron Iles
committed
Create project from touchstone project template
0 parents  commit c18d694

17 files changed

+1127
-0
lines changed

CHANGELOG

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Changelog
2+
---------
3+
4+
Next release 0.1
5+
````````````````

LICENSE

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright 2013 Aaron Iles
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.

MANIFEST.in

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
recursive-include docs *
2+
recursive-include tests *.py
3+
include *.py
4+
include CHANGELOG
5+
include LICENSE
6+
include MANIFEST.in
7+
include README.rst

Makefile

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
SHELL := /bin/bash
2+
3+
deps:
4+
pip install --upgrade --use-mirrors \
5+
-r requirements/development.txt \
6+
-r requirements/production.txt
7+
8+
sdist:
9+
python setup.py sdist
10+
11+
# register:
12+
# python setup.py register
13+
14+
site:
15+
cd docs; make html
16+
17+
test:
18+
coverage run setup.py test
19+
20+
unittest:
21+
coverage run -m unittest discover
22+
23+
lint:
24+
flake8 --exit-zero funcsigs tests
25+
26+
coverage:
27+
coverage report --show-missing --include="funcsigs*"
28+
29+
clean:
30+
python setup.py clean --all
31+
find . -type f -name "*.pyc" -exec rm '{}' +
32+
find . -type d -name "__pycache__" -exec rmdir '{}' +
33+
rm -rf *.egg-info .coverage
34+
cd docs; make clean
35+
36+
docs: site

README.rst

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
funcsigs
2+
========

0 commit comments

Comments
 (0)