Skip to content

Commit

Permalink
Made pypi compliant
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealLink committed Apr 19, 2017
1 parent 1057a8d commit fb052c9
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 693 deletions.
674 changes: 0 additions & 674 deletions LICENSE

This file was deleted.

21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2017 Dennis Karpienski

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@
# pythinkingcleaner
# pythinkingcleaner
Library to control ThinkingCleaner devices

## Requirements
- Python >= 3.0

## Install
```
pip install pythinkingcleaner
```

## Example

```python
from pythinkingcleaner import ThinkingCleaner, Discovery
import pprint

discovery = Discovery()
cleaners = discovery.discover()

for device in cleaners:
print(device.name)
```
8 changes: 0 additions & 8 deletions example.py

This file was deleted.

2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
25 changes: 15 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
from setuptools import setup
from distutils.core import setup

setup(name='pythinkingcleaner',
version='0.0.2',
description='Library to interface with thinkingcleaner',
url='https://github.com/TheRealLink/pythinkingcleaner',
author='Dennis Karpienski',
author_email='dennis@karpienski.de',
setup(
name = 'pythinkingcleaner',
packages = ['pythinkingcleaner'],
install_requires = ['requests'],
zip_safe = True,
license='MIT',
packages=['pythinkingcleaner'],
install_requires=['requests'],
zip_safe=True)
version = '0.0.3',
description = 'Library to control ThinkingCleaner devices',
author = 'Dennis Karpienski',
author_email = 'dennis@karpienski.de',
url = 'https://github.com/TheRealLink/pythinkingcleaner',
download_url = 'https://github.com/TheRealLink/pythinkingcleaner/archive/0.0.3.tar.gz',
keywords = ['thinkingcleaner', 'roomba'],
classifiers = [],
)

0 comments on commit fb052c9

Please sign in to comment.