-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 867 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name='the-lord-of-the-rings-sdk',
version='0.1.0',
author='Sebastijan Stevanovic',
author_email='[email protected]',
description='A Python SDK for accessing the Lord of the Rings API',
long_description=open('README.md').read(), # Include your README as the long description
long_description_content_type='text/markdown',
url='https://github.com/sebastijan94/Sebastijan-SDK',
packages=find_packages(), # Automatically find packages in the current directory
install_requires=[
'requests',
'python-dotenv',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.9.19', # Specify the Python version required
)