Skip to content

Commit

Permalink
Fix readme (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvizeli authored Sep 9, 2019
1 parent f9abad3 commit 47ceff4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
7 changes: 3 additions & 4 deletions README.rst → README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
PyDroid-IpCam
============
# PyDroid-IpCam

A python asyncio library for handling android ipcam.

Original written for Home-Assistant

Links
-----
## Links
- https://play.google.com/store/apps/details?id=com.pas.webcam
- http://home-assistant.io
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup
"""PyDroid IPCam Setup."""
from pathlib import Path

with open("README.rst") as f:
long_description = f.read()
from setuptools import setup

VERSION = "1.1"

Expand All @@ -14,7 +14,8 @@
url="https://github.com/pvizeli/pydroid-ipcam",
download_url="https://github.com/pvizeli/pydroid-ipcam/tarball/" + VERSION,
description=("A asyncio library for handling android ipcam"),
long_description=long_description,
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down

0 comments on commit 47ceff4

Please sign in to comment.