-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpyproject.toml
74 lines (64 loc) · 1.91 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
[project]
name = "runpod"
dynamic = ["version", "dependencies"]
description = "🐍 | Python library for RunPod API and serverless worker SDK."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
license = { text = "MIT License" }
authors = [
{ name = "RunPod", email = "engineer@runpod.io" },
{ name = "Justin Merrell", email = "justin.merrell@runpod.io" },
]
keywords = [
"runpod",
"ai",
"gpu",
"serverless",
"SDK",
"API",
"python",
"library",
]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
[project.urls]
Homepage = "https://runpod.io"
Documentation = "https://docs.runpod.io"
Repository = "https://github.com/runpod/runpod-python"
Changelog = "https://github.com/runpod/runpod-python/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/runpod/runpod-python/issues"
[tool.setuptools_scm]
version_file = "runpod/_version.py"
[project.scripts]
runpod = "runpod.cli.entry:runpod_cli"
[project.optional-dependencies]
test = [
"asynctest",
"nest_asyncio",
"faker",
"pytest-asyncio",
"pytest-cov",
"pytest-timeout",
"pytest-watch",
"pytest",
]
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
# Used by pytest coverage
[tool.coverage.run]
omit = ["runpod/_version.py", "runpod/serverless/core.py"]