-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (86 loc) · 2.4 KB
/
pyproject.toml
File metadata and controls
90 lines (86 loc) · 2.4 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
[project]
name = "robosystems-client"
version = "0.2.32"
description = "Python Client for RoboSystems financial graph database API"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "RFS LLC"},
]
license = {text = "MIT"}
keywords = ["client", "robosystems", "financial", "graph", "api", "sdk"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Framework :: Pydantic",
"Framework :: Pydantic :: 2",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Database :: Front-Ends",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.28.1",
"pydantic>=2.11.7",
"typing-extensions>=4.0.0",
"attrs>=23.0.0",
"python-dateutil>=2.8.0",
]
[project.optional-dependencies]
dev = [
"openapi-python-client>=0.21.8",
"basedpyright>=1.21.0",
"pytest-asyncio>=0.26.0",
"pytest>=8.3.5",
"ruff>=0.12",
"pytest-httpx>=0.30.0",
"build>=1.0.0",
"twine>=5.0.0",
]
# Table ingestion features (upload Parquet files, ingest to graph)
tables = [
"pandas>=2.1.0",
"pyarrow>=17.0.0",
]
# Legacy alias for extensions
extensions = [
"pandas>=2.1.0",
"pyarrow>=17.0.0",
]
# Install all optional features
all = [
"pandas>=2.1.0",
"pyarrow>=17.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["robosystems_client"]
[tool.basedpyright]
include = ["robosystems_client/extensions"]
exclude = ["robosystems_client/extensions/tests"]
extraPaths = ["."]
pythonVersion = "3.13"
venvPath = "."
venv = ".venv"
typeCheckingMode = "standard"
reportAttributeAccessIssue = "none"
reportArgumentType = "none"
reportGeneralTypeIssues = "none"
reportOptionalMemberAccess = "none"
reportReturnType = "none"
reportInvalidTypeForm = "none"
reportMissingImports = "none"