Initial commit: LogHive centralized log management system
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
"""Setup script for loghive-client."""
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name="loghive-client",
|
||||
version="0.1.0",
|
||||
description="LogHive client SDK — push logs from your Python projects to LogHive",
|
||||
author="LogHive",
|
||||
packages=find_packages(),
|
||||
install_requires=[
|
||||
"httpx>=0.27.0",
|
||||
],
|
||||
python_requires=">=3.10",
|
||||
classifiers=[
|
||||
"Development Status :: 3 - Alpha",
|
||||
"Intended Audience :: Developers",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user