-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (36 loc) · 883 Bytes
/
pyproject.toml
File metadata and controls
45 lines (36 loc) · 883 Bytes
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
[project]
name = "omniinfer_client"
version = "0.3.5"
description = "Omniinfer SDK for Python"
authors = [
{ name = "Omniinfer", email = "omniinfer@gmail.com" }
]
dependencies = [
"dataclass_wizard>=0.22.2",
"requests>=2.27.1",
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
readme = "README.md"
requires-python = ">= 3.6"
[project.urls]
"Homepage" = "https://github.com/omniinfer/python-sdk"
"Bug Tracker" = "https://discord.gg/nzqq8UScpx"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=7.0.1",
"pytest-dependency>=0.5.1",
"build>=0.9.0",
"twine>=3.8.0",
"pillow>=8.4.0",
]
[tool.hatch.metadata]
allow-direct-references = true