Define setup

This commit is contained in:
Fred Boniface 2024-10-29 13:15:23 +00:00
parent d4bec29e49
commit 62ad0f0bea

View File

@ -0,0 +1,40 @@
# pyOwlBoard - The Python client for the OwlBoard API
# Copyright (C) 2024 Frederick Boniface
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from setuptools import setup, find_packages
setup(
name='pyOwlBoard',
version='0.0.1',
author='Frederick Boniface',
author_email='api@owlboard.info',
description='OwlBoard API Client',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://git.fjla.uk/owlboard/pyowlboard',
packages=find_packages(),
classifiers=[
'Programming Lanauge :: Python :: 3',
'License :: OSI Approved :: GPLv3',
'Operating Systen :: OS Independent',
],
python_requires='>=3.6',
install_requires=[
'requests>=2.20.0',
'urllib3>=2.2.3',
'logging>=0.4.9.6'
]
)