-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
73 lines (69 loc) · 2.33 KB
/
setup.py
File metadata and controls
73 lines (69 loc) · 2.33 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
"""
Setup script for Context Branching SDK.
Install with:
pip install -e . # Development mode
pip install . # Production install
"""
from setuptools import setup, find_packages
from pathlib import Path
# Read README for long description
readme_file = Path(__file__).parent / "README.md"
long_description = readme_file.read_text() if readme_file.exists() else ""
setup(
name="context-branching-sdk",
version="0.1.0",
author="Google Research Team",
author_email="research@example.com",
description="Python SDK for checkpoint-based conversation branching in LLM applications",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/your-org/context-branching-sdk",
packages=find_packages(exclude=["tests", "examples", "app", "docs"]),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.9",
install_requires=[
# Core SDK has no external dependencies
],
extras_require={
"dev": [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
],
"examples": [
"Flask>=3.0.0",
],
"research": [
"matplotlib>=3.7.0",
"numpy>=1.24.0",
],
"all": [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"Flask>=3.0.0",
"matplotlib>=3.7.0",
"numpy>=1.24.0",
],
},
entry_points={
"console_scripts": [
"context-branching-chat=app.simple_chat:main",
"context-branching-web=app.web_chat:main",
],
},
project_urls={
"Bug Reports": "https://github.com/your-org/context-branching-sdk/issues",
"Source": "https://github.com/your-org/context-branching-sdk",
"Documentation": "https://context-branching-sdk.readthedocs.io",
},
)