Skip to content

Commit 3547bf1

Browse files
committed
Synced with bootstrap
1 parent 7fcfc15 commit 3547bf1

File tree

9 files changed

+41
-98
lines changed

9 files changed

+41
-98
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
# {{TITLE}}
1+
# Enviro pHAT Plus
22

3-
[![Build Status](https://travis-ci.com/pimoroni/{{LIBNAME}}-python.svg?branch=master)](https://travis-ci.com/pimoroni/{{LIBNAME}}-python)
4-
[![Coverage Status](https://coveralls.io/repos/github/pimoroni/{{LIBNAME}}-python/badge.svg?branch=master)](https://coveralls.io/github/pimoroni/{{LIBNAME}}-python?branch=master)
5-
[![PyPi Package](https://img.shields.io/pypi/v/{{LIBNAME}}.svg)](https://pypi.python.org/pypi/{{LIBNAME}})
6-
[![Python Versions](https://img.shields.io/pypi/pyversions/{{LIBNAME}}.svg)](https://pypi.python.org/pypi/{{LIBNAME}})
3+
[![Build Status](https://travis-ci.com/pimoroni/envirophatplus-python.svg?branch=master)](https://travis-ci.com/pimoroni/envirophatplus-python)
4+
[![Coverage Status](https://coveralls.io/repos/github/pimoroni/envirophatplus-python/badge.svg?branch=master)](https://coveralls.io/github/pimoroni/envirophatplus-python?branch=master)
5+
[![PyPi Package](https://img.shields.io/pypi/v/envirophatplus.svg)](https://pypi.python.org/pypi/envirophatplus)
6+
[![Python Versions](https://img.shields.io/pypi/pyversions/envirophatplus.svg)](https://pypi.python.org/pypi/envirophatplus)
77

88
# Installing
99

1010
Stable library from PyPi:
1111

12-
* Just run `sudo pip install {{LIBNAME}}`
12+
* Just run `sudo pip install envirophatplus`
1313

1414
Latest/development library from GitHub:
1515

16-
* `git clone https://github.com/pimoroni/{{LIBNAME}}-python`
17-
* `cd {{LIBNAME}}-python`
16+
* `git clone https://github.com/pimoroni/envirophatplus-python`
17+
* `cd envirophatplus-python`
1818
* `sudo ./install.sh`
1919

_bootstrap.md

Lines changed: 0 additions & 75 deletions
This file was deleted.

_bootstrap.sh

Lines changed: 0 additions & 5 deletions
This file was deleted.

_bootstrap_remotes.sh

Lines changed: 0 additions & 3 deletions
This file was deleted.

library/.coveragerc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[run]
2-
source = {{LIBNAME}}
2+
source = envirophatplus
33
omit =
44
.tox/*

library/MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ include CHANGELOG.txt
22
include LICENSE.txt
33
include README.rst
44
include setup.py
5-
recursive-include {{LIBNAME}} *.py
5+
recursive-include envirophatplus *.py

library/README.rst

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Enviro pHAT Plus
2+
================
3+
4+
|Build Status| |Coverage Status| |PyPi Package| |Python Versions|
5+
6+
Installing
7+
==========
8+
9+
Stable library from PyPi:
10+
11+
- Just run ``sudo pip install envirophatplus``
12+
13+
Latest/development library from GitHub:
14+
15+
- ``git clone https://github.com/pimoroni/envirophatplus-python``
16+
- ``cd envirophatplus-python``
17+
- ``sudo ./install.sh``
18+
19+
.. |Build Status| image:: https://travis-ci.com/pimoroni/envirophatplus-python.svg?branch=master
20+
:target: https://travis-ci.com/pimoroni/envirophatplus-python
21+
.. |Coverage Status| image:: https://coveralls.io/repos/github/pimoroni/envirophatplus-python/badge.svg?branch=master
22+
:target: https://coveralls.io/github/pimoroni/envirophatplus-python?branch=master
23+
.. |PyPi Package| image:: https://img.shields.io/pypi/v/envirophatplus.svg
24+
:target: https://pypi.python.org/pypi/envirophatplus
25+
.. |Python Versions| image:: https://img.shields.io/pypi/pyversions/envirophatplus.svg
26+
:target: https://pypi.python.org/pypi/envirophatplus

library/setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@
3838
'Topic :: System :: Hardware']
3939

4040
setup(
41-
name='{{LIBNAME}}',
41+
name='envirophatplus',
4242
version='0.0.1',
4343
author='Philip Howard',
4444
author_email='[email protected]',
45-
description="""{{DESCRIPTION}}""",
45+
description="""Enviro pHAT Plus environmental monitoring add-on for Raspberry Pi""",
4646
long_description=open('README.rst').read() + '\n' + open('CHANGELOG.txt').read(),
4747
license='MIT',
4848
keywords='Raspberry Pi',
4949
url='http://www.pimoroni.com',
50-
project_urls={'GitHub': 'https://www.github.com/pimoroni/{{LIBNAME}}-python'},
50+
project_urls={'GitHub': 'https://www.github.com/pimoroni/envirophatplus-python'},
5151
classifiers=classifiers,
52-
packages=['{{LIBNAME}}'],
53-
install_requires=[]
52+
packages=['envirophatplus'],
53+
install_requires=['pms5003', 'ltr559', 'st7735']
5454
)

0 commit comments

Comments
 (0)