-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.44 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "wavespeed"
description = "WaveSpeedAI Python Client — Official Python SDK for WaveSpeedAI inference platform"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "WaveSpeedAI", email = "support@wavespeed.ai"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"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",
]
dynamic = ["version"]
dependencies = [
"aiohttp[speedups]>=3.9.3",
"aiohttp-retry>=2.8.3",
"requests>=2.25.0",
"boto3>=1.26.165",
]
[project.urls]
Homepage = "https://github.com/WaveSpeedAI/wavespeed-python"
Repository = "https://github.com/WaveSpeedAI/wavespeed-python"
Issues = "https://github.com/WaveSpeedAI/wavespeed-python/issues"
[project.optional-dependencies]
test = ["pytest"]
[tool.setuptools_scm]
# Enable setuptools_scm for version management
version_file = "src/wavespeed/_version.py"
version_file_template = """
# This file is automatically generated by setuptools_scm
__version__ = "{version}"
"""
[tool.setuptools.packages.find]
where = ["src"]