-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (62 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
68 lines (62 loc) · 1.42 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
[build-system]
requires = ["setuptools>=42", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "s2-python"
authors = [
{name = "Flexiblepower", email = "info@info.nl"}
]
description = "S2 Protocol Python Wrapper"
dynamic = ["version"]
readme = "README.rst"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.9, < 3.14"
dependencies = [
"pydantic>=2.8.2",
"typing-extensions",
]
classifiers = [
"Development Status :: 4 - Beta",
"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",
]
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
local_scheme = "no-local-version"
[project.urls]
"Source code" = "https://github.com/flexiblepower/s2-ws-json-python"
[project.optional-dependencies]
ws = [
"websockets~=13.1",
]
testing = [
"pytest",
"pytest-coverage",
"pytest-timer",
"mypy",
"pylint",
"pyright",
]
development = [
"pip-tools",
"datamodel-code-generator",
"pre-commit",
"tox",
"setuptools_scm",
]
docs = [
"sphinx",
"sphinx-rtd-theme >= 1.2",
"sphinx-tabs",
"sphinx_copybutton",
"sphinx_fontawesome",
"sphinxcontrib.httpdomain",
]
[project.scripts]
s2python = "s2python.tools.cli:s2python_cmd"
[tool.black]
line-length=100