Skip to content

Commit

Permalink
Add missing dateutil dependency
Browse files Browse the repository at this point in the history
- Add build/pypi badges
- Change author to Arch Systems
  • Loading branch information
dkarchmer committed Feb 5, 2017
1 parent 59e4b51 commit 756f244
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### v0.4.3 (2017-02-05)

* Add python-dateutil dependency

### v0.4.2 (2017-02-05)

* First release from CI server
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016 Arch Systems Inc.
Copyright (c) 2017 Arch Systems Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# IOTile Cloud Python API Package

[![Build Status](https://travis-ci.org/iotile/python_iotile_cloud.svg?branch=master)](https://travis-ci.org/iotile/python_iotile_cloud)
[![PyPI version](https://badge.fury.io/py/iotile_cloud.svg)](https://badge.fury.io/py/iotile_cloud)


A python library for interacting with [IOTile Cloud](https://iotile.cloud) Rest API

## Installation

```
# pip install python_iotile_cloud
pip install git+https://github.com/iotile/[email protected]
pip install python_iotile_cloud
```

Package is based on https://github.com/samgiles/slumber
Expand Down Expand Up @@ -158,3 +161,4 @@ iotile_cloud requires the following modules.

* Python 2.7+ or 3.4+
* requests
* python-dateutil
1 change: 0 additions & 1 deletion iotile_cloud/api/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import json
import requests
import logging
import os
from .exceptions import *

DOMAIN_NAME = 'https://iotile.cloud'
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,19 @@
version=version.version,
description='Python client for https://iotile.cloud',
url='https://github.com/iotile/python_iotile_cloud',
author='David Karchmer',
author_email='david@arch-iot.com',
author='Arch Systems Inc.',
author_email="info@arch-iot.com",
license='MIT',
packages=[
'iotile_cloud',
'iotile_cloud.api',
'iotile_cloud.stream'
],
install_requires=[
'requests'
'requests',
'python-dateutil'
],
keywords=["iotile", "arch", "embedded", "hardware"],
keywords=["iotile", "arch", "iot", "automation"],
classifiers=[
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '0.4.2'
version = '0.4.3'

0 comments on commit 756f244

Please sign in to comment.