-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
149 lines (140 loc) · 3.13 KB
/
pyproject.toml
File metadata and controls
149 lines (140 loc) · 3.13 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
[project]
name = "isaacus-sagemaker"
version = "0.1.4"
authors = [
{name="Isaacus", email="support@isaacus.com"},
]
description = "A Python library for interacting with SageMaker deployments of the Isaacus API."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
dependencies = [
"boto3>=1.40.49",
"httpx>=0.28.1",
"msgspec>=0.19.0",
"orjson>=3.11.4",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Legal Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
"Framework :: AsyncIO",
"Typing :: Typed",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://docs.isaacus.com"
Documentation = "https://github.com/isaacus-dev/isaacus-sagemaker-python/blob/main/README.md"
Issues = "https://github.com/isaacus-dev/isaacus-sagemaker-python/issues"
Source = "https://github.com/isaacus-dev/isaacus-sagemaker-python"
[tool.ruff]
exclude = [
"__pycache__",
"develop-eggs",
"eggs",
".eggs",
"wheels",
"htmlcov",
".tox",
".nox",
".coverage",
".cache",
".pytest_cache",
".ipynb_checkpoints",
".mypy_cache",
".pybuilder",
"__pypackages__",
".env",
".venv",
"venv",
"env",
"ENV",
"env.bak",
"venv.bak",
".archive",
".persist_cache",
"site-packages",
"node_modules",
"dist",
"build",
"dist-info",
"egg-info",
".hatchling",
".bzr",
".direnv",
".git",
".git-rewrite",
".hg",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".vscode",
"_build",
"buck-out",
"migrations",
"target",
"bin",
"lib",
"lib64",
"include",
"share",
"var",
"tmp",
"temp",
"logs",
]
line-length = 120
indent-width = 4
target-version = "py313"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
fixable = [
"ALL",
]
unfixable = []
ignore = ["E741"]
[tool.ruff.lint.isort]
length-sort = true
section-order = [
"future",
"standard-library",
"third-party",
"first-party",
"local-folder",
]
lines-between-types = 1
order-by-type = false
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[dependency-groups]
dev = [
"ipykernel>=6.31.0",
"isaacus>=0.9.1",
"numpy>=2.0.2",
"pytest>=8.4.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"