From 87c4e3cdcdf0ba327a8b80343bf4a0006be065d3 Mon Sep 17 00:00:00 2001 From: aatikturk Date: Fri, 29 Jul 2022 16:34:43 +0300 Subject: [PATCH] edited gitignore and setup.py --- .gitignore | 1 + setup.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7b77f4a..cea0017 100644 --- a/.gitignore +++ b/.gitignore @@ -20,6 +20,7 @@ wheels/ *.egg-info/ .installed.cfg *.egg +setup.py MANIFEST # Unit test / coverage reports diff --git a/setup.py b/setup.py index ca91bb5..111984e 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages HERE = pathlib.Path(__file__).parent -VERSION = '0.6' +VERSION = '1.0.1' PACKAGE_NAME = 'obsstudio_sdk' AUTHOR = 'Adem Atikturk' AUTHOR_EMAIL = 'aatikturk@gmail.com' @@ -22,7 +22,7 @@ INSTALL_REQUIRES = [ ] # Python version requirement -PYTHON_REQUIRES = '>=3' +PYTHON_REQUIRES = '>=3.11' setup(name=PACKAGE_NAME, version=VERSION,