Skip to content

Commit 44323c8

Browse files
committed
Added PyPi and Travis build requirements
1 parent 38edec8 commit 44323c8

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
sudo: false
2+
language: python
3+
python:
4+
- "2.7"
5+
- "3.5"
6+
- "3.6"
7+
8+
install: "python setup.py install"
9+
script: "python setup.py test"

MANIFEST.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
include README.md
2+
include LICENSE
3+
include requirements.txt
4+
5+
exclude tests

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![Build Status](https://travis-ci.org/MSeal/htu21df_sensor.svg?branch=master)](https://travis-ci.org/MSeal/htu21df_sensor)
2+
13
# htu21df Sensor Library
24
A lightweight library for talking to an htu21df sensor over i2c. Supports python 2 or 3.
35

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def read(fname):
88
with open(fname, 'rU' if python_2 else 'r') as fhandle:
99
return fhandle.read()
1010

11-
version = '0.1.3'
11+
version = '0.1.4'
1212
required = [req.strip() for req in read('requirements.txt').splitlines() if req.strip()]
1313
setup(
1414
name='htu21df',
@@ -25,7 +25,7 @@ def read(fname):
2525
download_url='https://github.com/MSeal/htu21df_sensor/tarball/v' + version,
2626
keywords=['sensors', 'raspberry_pi', 'adafruit', 'scripting'],
2727
classifiers=[
28-
'Development Status :: 4 - Beta Development Status',
28+
'Development Status :: 4 - Beta',
2929
'Topic :: Utilities',
3030
'License :: OSI Approved :: MIT License',
3131
'Natural Language :: English',

0 commit comments

Comments
 (0)