-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (75 loc) · 1.98 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (75 loc) · 1.98 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
[build-system]
requires = ["setuptools>=75", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rocketride"
version = "1.0.6"
description = "RocketRide Pipeline Python Client SDK"
readme = "README.md"
authors = [
{name = "RocketRide, Inc.", email = "dev@rocketride.ai"}
]
maintainers = [
{name = "RocketRide, Inc.", email = "dev@rocketride.ai"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Typing :: Typed",
]
keywords = [
"rocketride",
"pipeline",
"dap",
"debug-adapter-protocol",
"data-processing",
"client-sdk",
"async",
"websocket",
]
dependencies = [
"websockets>=11.0.0",
"aiofiles>=23.0.0",
"pydantic>=2.0.0",
]
requires-python = ">=3.10"
license = "MIT"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"ruff>=0.8.0",
"build>=0.10.0",
"twine>=4.0.0",
]
test = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"python-dotenv>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/rocketride-ai/rocketride-server"
Documentation = "https://github.com/rocketride-ai/rocketride-server#readme"
Repository = "https://github.com/rocketride-ai/rocketride-server.git"
"Bug Reports" = "https://github.com/rocketride-ai/rocketride-server/issues"
[project.scripts]
rocketride = "rocketride.cli.main:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["rocketride*"]
[tool.setuptools.package-data]
rocketride = [
"py.typed",
"cli/templates/docs/*.md",
"cli/templates/stubs/*",
]