-
Notifications
You must be signed in to change notification settings - Fork 73
/
pyproject.toml
203 lines (177 loc) · 3.83 KB
/
pyproject.toml
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "burr"
version = "0.34.1"
dependencies = [] # yes, there are none
requires-python = ">=3.9"
authors = [
{name = "Elijah ben Izzy", email = "[email protected]"},
{name = "Stefan Krawczyk", email = "[email protected]"},
]
maintainers = [
{name = "Elijah ben Izzy", email = "[email protected]"},
{name = "Stefan Krawczyk", email = "[email protected]"},
]
description = "A state machine for data projects"
readme = "README.md"
#license = {file = "LICENSE.txt"}
keywords = ["mlops", "data", "state-machine", "llmops"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.optional-dependencies]
streamlit = [
"streamlit",
"graphviz",
"matplotlib",
"sf-hamilton"
]
hamilton = [
"sf-hamilton"
]
graphviz = [
"graphviz"
]
postgresql = [
"psycopg2-binary"
]
redis = [
"redis"
]
tests = [
"pytest",
"pytest-asyncio",
"burr[hamilton]",
"pymongo",
"burr[hamilton]",
"langchain_core",
"langchain_community",
"pandas",
"psycopg2",
"pydantic[email]",
"pyarrow",
"redis",
"burr[opentelemetry]",
"burr[haystack]"
]
documentation = [
"burr[tests]",
"sphinx",
"sphinx-autobuild",
"myst-nb",
"furo",
"sphinx-sitemap",
"sphinx-toolbox",
"psycopg2-binary",
"redis",
"sphinxcontrib-googleanalytics"
]
tracking-client = [
"pydantic>1"
]
tracking-client-s3 = [
"burr[tracking-client]",
"boto3"
]
tracking-server-s3 = [
"aerich",
"aiobotocore",
"fastapi",
"tortoise-orm[accel, asyncmy]",
"burr[tracking-server]",
"typing-inspect"
]
tracking-server = [
"click",
"fastapi",
"uvicorn",
"pydantic",
"pydantic-settings",
"fastapi-pagination",
"fastapi-utils",
"aiofiles",
"requests",
"jinja2",
"openai", # temporary for the demo, we will likely remove
"typing-inspect",
]
pydantic = [
"pydantic"
]
haystack = [
"haystack-ai"
]
cli = [
"loguru",
"click",
"requests"
]
tracking = [
"burr[tracking-client]",
"burr[tracking-server]",
]
learn = [
"burr[tracking,streamlit,graphviz,hamilton, cli]"
]
start = [
"burr[learn]"
]
# All the bloatware from various LLM demos
# In the future most people will be relying on simple APIs, not this
# But its good for demos!
# TODO -- fill this up with whatever is needed for the demos, it's not complete
examples = [
"langchain",
"langchain-community",
"langchain-openai",
"opentelemetry-api",
"opentelemetry-sdk",
'opentelemetry-instrumentation-openai',
]
# just install everything for developers
developer = [
"burr[streamlit]",
"burr[graphviz]",
"burr[tracking]",
"burr[tests]",
"burr[documentation]",
"burr[bloat]",
"build",
"twine",
"pre-commit",
]
opentelemetry = [
"opentelemetry-api",
"opentelemetry-sdk",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["burr", "burr.*"]
# we need to ensure this is there...
[tool.setuptools.package-data]
burr = [
"burr/tracking/server/build/**/*",
"burr/tracking/server/demo_data/**/*",
"py.typed",
]
[tool.aerich]
tortoise_orm = "burr.tracking.server.s3.settings.TORTOISE_ORM"
location = "./burr/tracking/server/s3/migrations"
src_folder = "./."
[project.urls]
Homepage = "https://github.com/dagworks-inc/burr"
Documentation = "https://github.com/dagworks-inc/burr"
Repository = "https://github.com/dagworks-inc/burr"
"Bug Tracker" = "https://github.com/dagworks-inc/burr"
[project.scripts]
burr = "burr.cli.__main__:cli_run_server"
burr-demo = "burr.cli.__main__:cli_demo_server"
burr-admin-server = "burr.cli.__main__:cli_run_server"
burr-admin-publish = "burr.cli.__main__:cli_build_and_publish"
burr-admin-build-ui = "burr.cli.__main__:cli_build_ui"
burr-admin-generate-demo-data = "burr.cli.__main__:cli_generate_demo_data"
burr-test-case = "burr.cli.__main__:cli_test_case"