File size: 1,671 Bytes
a02fd42
c856418
ec2933c
 
a02fd42
 
 
ec2933c
f4e287e
a02fd42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
df52c42
41422db
 
 
ab1d8bc
 
1ef09d2
bb34640
a02fd42
c856418
a02fd42
 
 
ec2933c
ba3b4a1
 
 
a4bb19d
 
 
ec2933c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41422db
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
[project]
name = "imagineui"
version = "0.1.0"
description = "An AI-powered CSS style generator using CSS Zen Garden designs"
authors = [
    {name = "Anthony Chapman", email = "adc@thewebdev.us"}
]
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
    "jupyter",
    "notebook",
    "ipykernel>=6.29.0",
    "beautifulsoup4>=4.12.0",
    "scrapy>=2.11.0",
    "playwright>=1.42.0",
    "pandas>=2.2.0",
    "numpy>=1.26.0",
    "langchain>=0.1.0",
    "langgraph>=0.0.19",
    "chainlit>=0.7.700",
    "transformers>=4.37.0",
    "datasets>=2.17.0",
    "torch==2.1.2",
    "sentence-transformers>=2.5.0",
    "python-dotenv>=1.0.0",
    "requests>=2.28.1",
    "openai>=1.63.2,<2.0.0",
    "langchain-openai>=0.3.6,<0.4.0",
    "langchain-community>=0.3.18,<0.4.0",
    "faiss-cpu>=1.7.4",
    "jq>=1.8.0",
    "ragas>=0.2.13",
    "rapidfuzz>=3.12.1",
    "websockets>=11.0.3",
    "langsmith>=0.3.11",
    "matplotlib>=3.10.0",
    "accelerate>=0.26.0",
    "nest-asyncio>=1.6.0",
    "anthropic>=0.49.0",
    "langchain-anthropic>=0.3.10",
]

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["src"]

[tool.black]
line-length = 88
target-version = ['py311']

[tool.ruff]
line-length = 88
target-version = "py311"

[tool.ruff.lint]
select = [
    "E",  # pycodestyle errors
    "W",  # pycodestyle warnings
    "F",  # pyflakes
    "I",  # isort
    "B",  # flake8-bugbear
]

[tool.pytest.ini_options]
pythonpath = ["."]
addopts = "-ra -q"
testpaths = ["tests"]

[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
check_untyped_defs = true