Skip to content

Commit bec8b77

Browse files
committed
Minor changes for PyPI package
1 parent eeae2bb commit bec8b77

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,6 @@ client3 = ScreenShareClient('127.0.0.1', 9999)
3434
client1.start_stream()
3535
client2.start_stream()
3636
client3.start_stream()
37-
```
37+
```
38+
39+
Check out: https://www.youtube.com/c/NeuralNine

setup.py

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
from setuptools import setup, find_packages
2+
import codecs
3+
import os
24

3-
VERSION = '0.0.7'
5+
here = os.path.abspath(os.path.dirname(__file__))
6+
7+
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
8+
long_description = "\n" + fh.read()
9+
10+
VERSION = '0.0.9'
411
DESCRIPTION = 'Streaming video data via networks'
512
LONG_DESCRIPTION = 'A package that allows to build simple streams of video and camera data.'
613

@@ -11,7 +18,8 @@
1118
author="NeuralNine (Florian Dedov)",
1219
author_email="<[email protected]>",
1320
description=DESCRIPTION,
14-
long_description=LONG_DESCRIPTION,
21+
long_description_content_type="text/markdown",
22+
long_description=long_description,
1523
packages=find_packages(),
1624
install_requires=['opencv-python', 'pyautogui'],
1725
keywords=['python', 'video', 'stream', 'video stream', 'camera stream', 'sockets'],

0 commit comments

Comments
 (0)