-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
133 lines (118 loc) · 2.84 KB
/
pyproject.toml
File metadata and controls
133 lines (118 loc) · 2.84 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "replane"
description = "Python SDK for Replane - dynamic configuration platform with real-time updates"
dynamic = ["version"]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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 :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
authors = [
{name = "Dmitry Tilyupo", email = "tilyupo@gmail.com"}
]
requires-python = ">=3.10"
dependencies = []
license = {file = "LICENSE"}
[project.urls]
Homepage = "https://github.com/replane-dev/replane-python"
Repository = "https://github.com/replane-dev/replane-python"
Changelog = "https://github.com/replane-dev/replane-python/blob/main/CHANGELOG.md"
# Documentation = "https://replane.readthedocs.io/"
[project.optional-dependencies]
async = [
"httpx>=0.25.0",
]
dev = [
"httpx>=0.25.0",
"ruff",
"mypy>=1.0,<2.0",
"pytest",
"pytest-asyncio",
"pytest-cov",
"twine>=1.11.0",
"build",
"setuptools",
"wheel",
"isort",
"black",
"sphinx",
"myst-parser",
"sphinx-copybutton",
"sphinx-autodoc-typehints",
"furo",
]
[tool.setuptools.packages.find]
exclude = [
"*.tests",
"*.tests.*",
"tests.*",
"tests",
"docs*",
"scripts*"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
replane = ["py.typed"]
[tool.setuptools.dynamic]
version = {attr = "replane.version.VERSION"}
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
(
__pycache__
| \.git
| \.mypy_cache
| \.pytest_cache
| \.vscode
| \.venv
| \bdist\b
| \bdoc\b
)
'''
[tool.isort]
profile = "black"
multi_line_output = 3
# You can override these pyright settings by adding a personal pyrightconfig.json file.
[tool.pyright]
reportPrivateImportUsage = false
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.mypy]
ignore_missing_imports = true
no_site_packages = true
check_untyped_defs = true
exclude = [
"examples/",
"docs/",
]
[[tool.mypy.overrides]]
module = "tests.*"
strict_optional = false
# Generic classes (Replane, InMemoryReplaneClient) don't require type parameters in tests
disable_error_code = ["var-annotated"]
[tool.pytest.ini_options]
testpaths = "tests/"
python_classes = [
"Test*",
"*Test"
]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
log_format = "%(asctime)s - %(levelname)s - %(name)s - %(message)s"
log_level = "DEBUG"