mirror of
https://github.com/onyx-and-iris/obsws-python.git
synced 2026-04-18 14:03:32 +00:00
initial commit including request calls to obswebsocket
This commit is contained in:
40
setup.py
Normal file
40
setup.py
Normal file
@@ -0,0 +1,40 @@
|
||||
import pathlib
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
HERE = pathlib.Path(__file__).parent
|
||||
|
||||
|
||||
VERSION = '0.4'
|
||||
PACKAGE_NAME = 'obsstudio_sdk'
|
||||
AUTHOR = 'Adem Atikturk'
|
||||
AUTHOR_EMAIL = 'aatikturk@gmail.com'
|
||||
URL = 'https://github.com/aatikturk/obsstudio_sdk'
|
||||
LICENSE = 'GNU General Public License v3.0'
|
||||
DESCRIPTION = 'A Python SDK for OBS Studio WebSocket v5.0'
|
||||
|
||||
|
||||
LONG_DESCRIPTION = (HERE / "README.md").read_text()
|
||||
LONG_DESC_TYPE = "text/markdown"
|
||||
|
||||
# Dependencies for the package
|
||||
INSTALL_REQUIRES = [
|
||||
'websocket-client'
|
||||
]
|
||||
|
||||
# Python version requirement
|
||||
PYTHON_REQUIRES = '>=3'
|
||||
|
||||
setup(name=PACKAGE_NAME,
|
||||
version=VERSION,
|
||||
description=DESCRIPTION,
|
||||
long_description=LONG_DESCRIPTION,
|
||||
long_description_content_type=LONG_DESC_TYPE,
|
||||
author=AUTHOR,
|
||||
license=LICENSE,
|
||||
author_email=AUTHOR_EMAIL,
|
||||
url=URL,
|
||||
install_requires=INSTALL_REQUIRES,
|
||||
python_requires=PYTHON_REQUIRES,
|
||||
py_modules = ['baseclient', 'reqs'],
|
||||
packages=['obsstudio_sdk']
|
||||
)
|
||||
Reference in New Issue
Block a user