-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (73 loc) · 2.66 KB
/
pyproject.toml
File metadata and controls
81 lines (73 loc) · 2.66 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "vynfi"
version = "1.5.1"
description = "Python SDK for the VynFi synthetic financial data API"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.9"
authors = [{ name = "VynFi", email = "[email protected]" }]
keywords = ["vynfi", "synthetic-data", "finance", "api", "financial-data", "erp", "accounting"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"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 :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.25",
"pydantic>=2.0",
"eval_type_backport>=0.1.0; python_version < '3.10'",
]
[project.urls]
Homepage = "https://vynfi.com"
Documentation = "https://docs.vynfi.com"
Repository = "https://github.com/VynFi/VynFi-python"
Issues = "https://github.com/VynFi/VynFi-python/issues"
Changelog = "https://github.com/VynFi/VynFi-python/blob/main/CHANGELOG.md"
[project.optional-dependencies]
pandas = ["pandas>=1.5"]
polars = ["polars>=0.20"]
all = ["pandas>=1.5", "polars>=0.20"]
dev = [
"pytest>=7",
"respx>=0.21",
"ruff>=0.4",
"mypy>=1.0",
]
[tool.ruff]
target-version = "py39"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.ruff.lint.per-file-ignores]
# These files define a list() method which shadows the builtin;
# mypy needs typing.List/Optional to avoid interpreting list[X] as the method.
"src/vynfi/resources/api_keys.py" = ["UP006", "UP035", "UP045"]
"src/vynfi/resources/webhooks.py" = ["UP006", "UP035", "UP045"]
"src/vynfi/resources/catalog.py" = ["UP006", "UP035", "UP045"]
"src/vynfi/resources/configs.py" = ["UP006", "UP035", "UP045"]
"src/vynfi/resources/scenarios.py" = ["UP006", "UP035", "UP045"]
"src/vynfi/resources/notifications.py" = ["UP006", "UP035", "UP045"]
"src/vynfi/resources/jobs.py" = ["UP006", "UP035", "UP045"]
[tool.mypy]
python_version = "3.9"
strict = true
plugins = ["pydantic.mypy"]
[tool.pytest.ini_options]
testpaths = ["tests"]