-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (97 loc) · 2.05 KB
/
Copy pathpyproject.toml
File metadata and controls
106 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
[tool.ruff]
line-length = 120
exclude = ["nifi/user_scripts/legacy_scripts", "services"]
target-version = "py311"
indent-width = 4
[tool.uv]
required-version = ">=0.12.1"
[tool.ruff.lint]
# Enable flake8-bugbear (`B`) rules, in addition to the defaults.
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
fixable = ["ALL"]
[tool.mypy]
plugins = ["pydantic.mypy"]
python_version = "3.11"
ignore_missing_imports = true
strict = false
files = "."
mypy_path = "./typings/"
warn_unused_configs = true
[tool.setuptools.packages.find]
include = ["nifi*"]
exclude = [
"*egg-info*",
"build*",
"dist*",
"nifi/conf*",
"nifi/drivers*",
"nifi/user_schemas*",
"nifi/user_templates*",
]
[tool.pyright]
venvPath = "."
venv = ".venv"
[project]
name = "cogstack_nifi"
version = "0.0.1"
requires-python = ">=3.11"
dependencies = [
"avro==1.12.2",
"bokeh==3.8.2",
"dill>=0.4.0,<1.0.0",
"elasticsearch9==9.5.1",
"fhir.resources==8.3.0",
"geocoder==1.38.1",
"jsonpickle==4.1.1",
"mysql-connector-python==26.7.0",
"neo4j==5.28.2",
"nipyapi==1.7.0",
"nltk==3.10.3",
"numpy==2.4.6",
"opensearch-py==3.0.0",
"overrides==7.7.0",
"pandas==2.3.3",
"polars==1.44.2",
"psycopg[binary,c]==3.3.6",
"py4j==0.10.9.9",
"py7zr==1.1.3",
"pyarrow==25.0.1",
"pydantic==2.13.5",
"pydantic-settings==2.15.0",
"pydicom==3.0.2",
"pymssql==2.3.9",
"PyYAML==6.0.3",
"rancoord==0.0.6",
"requests==2.33.0",
"snowflake==1.13.1",
"snowflake-connector-python==4.7.4",
"wheel==0.46.2",
"xlsxwriter==3.2.9",
"xnat==0.8.1",
]
[dependency-groups]
dev = [
"mypy==2.3.1",
"mypy-extensions==1.1.0",
"ruff==0.12.12",
"timeout-decorator==0.5.0",
"types-aiofiles==25.1.0.20260518",
"types-PyYAML==6.0.12.20250516",
"types-setuptools==80.9.0.20250529",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"