← back to Watches
sdk/setup.py
42 lines
"""
Setup configuration for omega-watch-api-client Python package
"""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="omega-watch-api-client",
version="2.0.0",
author="Omega Watch Price History Team",
description="Official Python client library for the Omega Watch Price History API",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://45.61.58.125:7600/api/docs",
py_modules=["omega_api_client"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.7",
install_requires=[
"requests>=2.25.0",
],
keywords="omega watches api client luxury investment price-history",
project_urls={
"Documentation": "http://45.61.58.125:7600/api/docs",
"Source": "https://github.com/omega-watch-api/client-python",
"Tracker": "https://github.com/omega-watch-api/client-python/issues",
},
)