-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.26 KB
/
setup.py
File metadata and controls
35 lines (31 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
"""Minimal setup.py for the Strawberry Python SDK.
We intentionally stay with setup.py (not pyproject.toml) to keep the vendored
install path trivial. No external deps, stdlib-only.
"""
from setuptools import find_packages, setup
setup(
name="strawberry-sdk",
version="1.0.0",
description="Strawberry analytics, error, and log SDK for Python servers.",
long_description="""Strawberry SDK for Python. Server-side only.
Captures custom analytics events, errors, logs, and LLM calls and ships them
to a Strawberry backend. Zero third-party dependencies. Works with any ASGI
app via the included ``strawberry.middleware`` wrapper.
""",
long_description_content_type="text/plain",
author="Strawberry",
url="https://github.com/steventruong/strawberry-python",
license="MIT",
packages=find_packages(exclude=("tests", "tests.*")),
python_requires=">=3.9",
install_requires=[],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
],
)