-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (97 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
108 lines (97 loc) · 2.05 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
[project]
name = "novem"
version = "0.6.0"
description = "python library for the novem data visualisation platform"
authors = [
{ name = "Sondov Engen", email = "sen@novem.io" },
{ name = "Bjørnar Snoksrud", email = "bsn@novem.io" },
{ name = "Martin Myrseth", email = "mmy@novem.io" },
]
requires-python = ">=3.10,<4"
readme = "README.md"
license = "MIT"
dependencies = [
"requests>=2.32.4",
"pyreadline3>=3.5.4",
"colorama>=0.4.6",
"urllib3>=2.5.0",
"typing-extensions>=4.14.1",
]
[project.optional-dependencies]
events = [
"python-socketio[asyncio_client]>=5.11.0",
]
mcp = [
"mcp>=1.0.0",
]
[project.urls]
Homepage = "https://novem.io"
Repository = "https://github.com/novem-code/novem-python"
[project.scripts]
novem = "novem.cli:run_cli"
[dependency-groups]
dev = [
"flake8>=7.1.1",
"isort>=5.13.2,<9.0.0",
"mypy>=1.11.2",
"pre-commit>=2.16,<5.0",
"pydantic>=2.8.2",
"pyfakefs==6.2.0",
"pytest>=8.3.2",
"pytest-cov>=5.0.0",
"requests-mock>=1.12.1",
"types-requests>=2.27.7",
"black>=24.8.0",
"pandas>=2.2.2",
"pandas-stubs>=2.2.2.240807",
]
[tool.uv]
package = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/tests",
"/scripts",
"/examples",
"/.pre-commit-config.yaml",
"/.mailmap",
"/flake.nix",
"/flake.lock",
"/uv.lock",
"/Makefile",
]
[tool.black]
line-length = 120
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 120
[tool.pytest.ini_options]
filterwarnings = [
"ignore::UserWarning",
]