-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
127 lines (117 loc) · 3.22 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
[project]
name = "thinking-dataset"
version = "0.0.2"
description = "Generate real-world insights and business case studies with strategic AI"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
keywords = [
"dataset",
"ai",
"machine-learning",
"business",
"case-studies",
"strategic-ai",
]
authors = [{ name = "Kara Rawson", email = "[email protected]" }]
maintainers = [{ name = "MultiTonic", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"huggingface_hub[cli]>=0.19.0",
"datasets>=2.15.0",
"PyPDF2>=3.0.0",
"python-dotenv>=1.0.0",
"click>=8.1.7",
"requests>=2.31.0",
"rich>=13.7.0",
"sqlite-utils>=3.35.1",
"pytest>=7.4.3",
"pytest-html>=4.1.1",
"pytest-cov>=4.1.0",
"loguru>=0.7.2",
"pandas>=2.1.3",
"numpy<2.0.0",
"scikit-learn>=1.3.2",
"sqlalchemy>=2.0.23",
"tqdm>=4.66.1",
"pydantic>=2.5.2",
"python-statemachine>=2.1.2",
"jsonschema>=4.20.0",
"ollama>=0.1.4",
"tenacity>=8.2.3",
"lorem-text>=2.1",
"python-dateutil>=2.8.2",
]
[project.optional-dependencies]
dev = [
"black>=23.11.0",
"isort>=5.12.0",
"flake8>=6.1.0",
"mypy>=1.7.1",
"pre-commit>=3.5.0",
"pytest>=7.4.3",
"pytest-cov>=4.1.0",
"pytest-html>=4.1.1",
"pytest-mock>=3.12.0",
"pytest-asyncio>=0.21.1",
"sphinx>=7.2.6",
"sphinx-rtd-theme>=1.3.0",
"sphinx-autodoc-typehints>=1.24.0",
]
[project.urls]
Homepage = "https://github.com/MultiTonic/thinking-dataset"
Documentation = "https://github.com/MultiTonic/thinking-dataset/tree/main/docs"
Repository = "https://github.com/MultiTonic/thinking-dataset"
Issues = "https://github.com/MultiTonic/thinking-dataset/issues"
Changelog = "https://github.com/MultiTonic/thinking-dataset/blob/main/CHANGELOG.md"
Discord = "https://discord.gg/RgxcdVFjpz"
[project.scripts]
setup = "assets.scripts.uv.setup:main"
thinking-dataset = "thinking_dataset.main:cli"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --cov=thinking_dataset --cov-report=html"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
python_classes = ["Test*"]
[tool.coverage.run]
branch = true
source = ["thinking_dataset"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if self.debug:",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"pass",
"raise ImportError",
]
[tool.black]
line-length = 79
target-version = ["py312"]
include = '\.pyi?$'
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 79
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
check_untyped_defs = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"