Skip to content

Commit aed2c6c

Browse files
committed
Init package
1 parent 2fe0cb5 commit aed2c6c

12 files changed

+55
-6
lines changed

.gitignore

+7-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
__pycache__
1+
__pycache__/
2+
/.idea/
3+
/venv
4+
*.log
5+
/build
6+
/dist
7+
/*.egg-info

COPYRIGHT.txt

-2
This file was deleted.

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Riccardo Tempesta
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

LICENSE.txt

-2
This file was deleted.

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,19 @@
22

33
Also compatible with Meiantech, Allarmi365, and others
44

5+
# Install
6+
7+
```bash
8+
python3 -m pip install ialarmclient-phoenix
9+
```
10+
511
## Usage example
612

713
```
814
#!/usr/bin/env python
915
import asyncio
1016
11-
from ialarmclient import IalarmClient
17+
import ialarmclient
1218
1319
1420
async def start():
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

setup.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="ialarmclient-phoenix",
8+
version="1.0.0",
9+
author="Riccardo Tempesta",
10+
author_email="[email protected]",
11+
description="Meiantech, iAlarm, Antifurto365, AllarmiWireless and other alarm systems support",
12+
long_description=long_description,
13+
url="https://github.com/phoenix128/python-ialarmclient",
14+
packages=setuptools.find_packages(),
15+
classifiers=[
16+
"Programming Language :: Python :: 3.7",
17+
"License :: OSI Approved :: MIT License",
18+
"Operating System :: OS Independent",
19+
],
20+
)

0 commit comments

Comments
 (0)