-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
78 lines (70 loc) · 1.91 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
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "structkit"
version = "3.0.0"
description = "A structured data processing tool"
readme = "README.md"
license = {text = "MIT"}
authors = [{name = "httpdss"}]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
keywords = ["data", "structure", "processing"]
dependencies = [
"PyYAML>=6.0",
"requests>=2.28.0",
"openai>=1.0.0",
"python-dotenv>=0.21.0",
"jinja2>=3.1.0",
"PyGithub>=1.58.0",
"shtab>=1.6.0",
"colorlog>=6.7.0",
"pydantic-ai>=0.1.0",
"fastmcp>=2.0.0",
]
[project.optional-dependencies]
s3 = [
"boto3>=1.26.0",
]
gcs = [
"google-cloud-storage>=2.10.0",
"google-api-core>=2.11.0",
]
cloud = [
"structkit[s3]",
"structkit[gcs]"
]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"flake8>=4.0.0",
"mypy>=0.990",
]
[project.urls]
Homepage = "https://httpdss.github.io/structkit/"
Repository = "https://github.com/httpdss/structkit"
Issues = "https://github.com/httpdss/structkit/issues"
Discussions = "https://github.com/httpdss/structkit/discussions"
Documentation = "https://httpdss.github.io/structkit/docs/"
Funding = "https://httpdss.github.io/structkit/docs/funding/"
[project.scripts]
structkit = "structkit.main:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."] # Look for packages in root directory
include = ["structkit*"]
[tool.setuptools.package-data]
structkit = ["contribs/*.yaml"]