Started adding sdk to pip

This commit is contained in:
Frikky
2024-11-12 11:43:19 +01:00
parent cb122e1585
commit a9814e796d
2 changed files with 71 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
from setuptools import setup, find_packages
setup(
name='shuffle_app_sdk', # Name of the package
version='0.0.1', # Version number
description='The SDK used for Shuffle',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Fredrik Saito Odegaardstuen',
author_email='frikky@shuffler.io',
url='https://github.com/shuffle/shuffle',
packages=find_packages(),
install_requires=[
'requests',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.7', # Specify Python version requirements
)