-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (50 loc) · 1.11 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
[project]
name = "dkdc"
version = "0.15.0"
authors = [{ name = "Cody", email = "[email protected]" }]
description = "dkdc"
readme = "readme.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
# dkdc-io public-facing packages
'stringflow',
'botchain',
# dkdc-io packages
'dkdc-user',
'dkdc-todo',
'dkdc-chat',
'dkdc-email',
'dkdc-calendar',
'dkdc-lake',
'dkdc-crypto',
'dkdc-vault',
'dkdc-log',
'dkdc-env',
'dkdc-state',
'dkdc-util',
# UI packages
'rich',
'typer',
'plotly',
'matplotlib', # why?
'shiny',
'shinyswatch',
'shinywidgets',
]
[project.optional-dependencies]
dev = ["ruff", "ipython", "jupyter", "nbclient", "ipykernel"]
test = ["pytest"]
[project.urls]
"Homepage" = "https://github.com/dkdc-io/dkdc"
"Bug Tracker" = "https://github.com/dkdc-io/dkdc/issues"
[project.scripts]
"dkdc" = "dkdc.ui.cli:app"
# I normally shell alias these, but may as well include
"dkcd" = "dkdc.ui.cli:app"
"dk" = "dkdc.ui.cli:app"
"dc" = "dkdc.ui.cli:app"