"""
Setup configuration for Lark Base Python SDK
"""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")]
setup(
name="lark-base-sdk",
version="1.0.0",
author="HypeLab",
author_email="dev@hypelab.com",
description="Comprehensive Python SDK for managing Lark Base (Bitable) data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hypelab/hype-dash",
packages=find_packages(exclude=["examples", "examples.*"]),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.8",
install_requires=requirements,
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
],
},
keywords="lark feishu bitable base data-management sdk api",
project_urls={
"Bug Reports": "https://github.com/hypelab/hype-dash/issues",
"Source": "https://github.com/hypelab/hype-dash",
"Documentation": "https://github.com/hypelab/hype-dash/tree/main/python",
},
)