edited gitignore and setup.py

This commit is contained in:
aatikturk 2022-07-29 16:34:43 +03:00
parent eda5ee66e0
commit 87c4e3cdcd
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -20,6 +20,7 @@ wheels/
*.egg-info/
.installed.cfg
*.egg
setup.py
MANIFEST
# Unit test / coverage reports

View File

@ -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,