-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (74 loc) · 2.7 KB
/
pyproject.toml
File metadata and controls
81 lines (74 loc) · 2.7 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
[tool.poetry]
name = "dialectical-framework"
version = "0.7.6"
description = "A dialectical framework for augmented intelligence. AI reasoning powered with dialectics supports humans in: system optimization (psychology, engineering, business, politics, etc.); dispute resolution (mediation, conflicts, negotiations, etc.); decision-making (dilemmas, challenging situations, win-win, etc.)."
authors = ["Evaldas Taroza <evaldas@dialexity.com>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/dialexity/dialectical-framework"
repository = "https://github.com/dialexity/dialectical-framework"
keywords = [
"dialectics", "dialectical-reasoning", "synthesis", "thesis-antithesis",
"ai", "artificial-intelligence", "llm", "reasoning-framework",
"philosophy", "logic", "argumentation", "conflict-resolution",
"decision-making", "critical-thinking", "semantic-graph",
"mirascope", "pydantic", "wisdom-units", "polarity-reasoning"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Sociology",
"Framework :: Pydantic",
"Environment :: Console",
"Natural Language :: English"
]
[[tool.poetry.packages]]
include = "dialectical_framework"
from = "src"
[tool.poetry.dependencies]
python = "^3.11"
mirascope = {extras = [
"azure",
"openai",
"anthropic",
"bedrock",
"langfuse",
"tenacity"
], version = "^1.25.7"}
python-dotenv = "^1.2.1"
tabulate = "^0.9.0"
dependency-injector = "^4.48.2"
litellm = "^1.79.3"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
black = "^25.1.0"
isort = "^6.0.1"
#flake8 = "^7.1.2"
pytest-asyncio = "^1.1.0"
autoflake = "^2.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
filterwarnings = [
"ignore::DeprecationWarning:mirascope.*",
"ignore::UserWarning:mirascope.*",
"ignore::DeprecationWarning:pydantic._internal._config",
"ignore::DeprecationWarning:httpx._models",
"ignore::UserWarning:pydantic.main"
]