-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
35 lines (27 loc) · 995 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import os
from setuptools import setup, find_packages
VERSION = "0.0.6"
DESCRIPTION = "A Python library for streaming video over RTSP"
def long_description(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def requirements(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read().splitlines()
setup(
name="zephyr-rtsp",
version=VERSION,
author="Bintang Pradana Erlangga Putra",
author_email="<[email protected]>",
description=DESCRIPTION,
long_description=long_description("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/bpradana/zephyr",
packages=find_packages(),
install_requires=requirements("requirements.txt"),
keywords=["python", "rtsp", "streaming", "video"],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
],
license="MIT",
)