-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (84 loc) · 2.16 KB
/
pyproject.toml
File metadata and controls
96 lines (84 loc) · 2.16 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[project]
name = "dandy"
description = "Python Artificial Intelligence Framework"
readme = { file = "README.md", content-type = "text/markdown" }
license = "MIT"
authors = [
{ name = "Nathan Johnson", email = "nathanj@stratusadv.com" },
]
keywords = ["dandy", "ai", "cli", "llm", "agent", "prompt", "gpt", "bot", "workflow", "automation", "artificial intelligence"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.11"
dynamic = ["version"]
dependencies = [
"blessed==1.29.0",
"requests==2.32.5",
"pydantic==2.12.5",
"python-dotenv==1.2.1"
]
[project.optional-dependencies]
development = [
"build",
"Faker",
"pytest",
"ruff",
"setuptools",
"twine",
"ty",
"wheel"
]
documentation = [
"mkdocs",
"markdown-exec[ansi]",
"mkdocstrings-python",
"mkdocs-gen-files",
"mkdocs-include-markdown-plugin",
"mkdocs-literate-nav",
"mkdocs-material",
"mkdocs-section-index",
"mkdocs-table-reader-plugin",
"openpyxl"
]
[project.scripts]
dandy = "dandy.cli.main:main"
[project.urls]
Homepage = "https://dandysoftware.com"
Documentation = "https://dandysoftware.com"
Repository = "https://github.com/stratusadv/dandy"
Changelog = "https://dandysoftware.com/changelog/changelog/"
[build-system]
requires = [
"build",
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.coverage.run]
omit = [
"*/tests/*",
'*/venv/*',
'*/.venv/*',
'*/example/*',
'*/docs/*'
]
[tool.setuptools.package-data]
dandy = [
"**/*.html",
]
[tool.setuptools.dynamic]
version = { attr = "dandy.constants.__VERSION__" }
[tool.codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = '.git*,*.svg,*.css,.cache,.npm'
check-hidden = true
# ignore-regex = ''
ignore-words-list = 'doesnt'