Skip to content

Commit de465d8

Browse files
committed
Merge branch 'master' of github.com:pimoroni/boilerplate-python
2 parents 460a5be + ad2060d commit de465d8

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ matrix:
1111
env: TOXENV=py27
1212
- python: "3.5"
1313
env: TOXENV=py35
14-
- python: "2.7"
15-
env: TOXENV=py27
1614

1715
install:
1816
- pip install --ignore-installed --upgrade setuptools pip tox coveralls
@@ -22,3 +20,6 @@ script:
2220
- tox -vv
2321

2422
after_success: if [ "$TOXENV" == "py35" ]; then coveralls; fi
23+
24+
notifications:
25+
email: false

library/setup.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
[metadata]
2+
# This includes the license file(s) in the wheel.
3+
# https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file
4+
license_files = LICENSE.txt
5+
16
[flake8]
27
exclude =
38
.tox,

library/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
license='MIT',
4848
keywords='Raspberry Pi',
4949
url='http://www.pimoroni.com',
50+
project_urls={ 'GitHub': 'https://www.github.com/pimoroni/{{LIBNAME}}-python' },
5051
classifiers=classifiers,
5152
packages=['{{LIBNAME}}'],
5253
install_requires=[]

library/tox.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,11 @@ deps =
1414

1515
[testenv:qa]
1616
commands =
17+
check-manifest --ignore tox.ini,tests*,.coveragerc
18+
python setup.py check -m -r -s
1719
flake8 --ignore E501
1820
rstcheck README.rst
1921
deps =
22+
check-manifest
2023
flake8
2124
rstcheck

0 commit comments

Comments
 (0)