forked from DAGWorks-Inc/burr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
135 lines (116 loc) · 2.56 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "burr"
version = "0.10.2"
dependencies = [] # yes, there are none
requires-python = ">=3.9"
authors = [
{name = "Elijah ben Izzy", email = "elijah@dagworks.io"},
{name = "Stefan Krawczyk", email = "stefan@dagworks.io"},
]
maintainers = [
{name = "Elijah ben Izzy", email = "elijah@dagworks.io"},
{name = "Stefan Krawczyk", email = "stefan@dagworks.io"},
]
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]"
]
documentation = [
"sphinx",
"sphinx-autobuild",
"myst-parser",
"furo",
"sphinx-sitemap",
"sphinx-toolbox",
"psycopg2-binary",
"redis",
]
tracking-client = [
"pydantic"
]
tracking-server = [
"click",
"fastapi",
"uvicorn",
"pydantic",
"fastapi-pagination",
"aiofiles",
"requests",
"jinja2",
"openai", # temporary for the demo, we will likely remove
]
tracking = [
"burr[tracking-client]",
"burr[tracking-server]",
"loguru",
]
learn = [
"burr[tracking,streamlit,graphviz,hamilton]"
]
start = [
"burr[learn]"
]
# just install everything for developers
developer = [
"burr[streamlit]",
"burr[graphviz]",
"burr[tracking]",
"burr[tests]",
"burr[documentation]",
"build",
"twine",
"pre-commit",
]
[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/**/*"
]
[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"