This repository has been archived by the owner on Dec 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
110 lines (97 loc) · 3.11 KB
/
pyproject.toml
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
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
pattern = "default-unprefixed"
[tool.poetry.dependencies]
python = "^3.7"
# Base neptune package
neptune = "1.9.1"
# For 3.7 compatibility
typing_extensions = "^4.0.0"
# Optional for default progress update handling
tqdm = { version = ">=4.66.0", optional = true }
[tool.poetry]
authors = ["neptune.ai <contact@neptune.ai>"]
description = "Neptune Client Experimental"
repository = "https://github.com/neptune-ai/neptune-client-experimental"
homepage = "https://neptune.ai/"
documentation = "https://docs.neptune.ai/"
include = ["CHANGELOG.md"]
license = "Apache License 2.0"
name = "neptune-experimental"
readme = "README.md"
version = "0.0.1"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = [
"MLOps",
"ML Experiment Tracking",
"ML Model Registry",
"ML Model Store",
"ML Metadata Store",
]
packages = [
{ include = "neptune_experimental", from = "src" },
{ include = "neptune_fetcher", from = "src" },
]
[tool.poetry.plugins."neptune.extensions"]
"experimental_remote_signals" = "neptune_experimental.remote_signals:initialize"
"experimental_operation_error_processor" = "neptune_experimental.operation_error_processor:initialize"
"experimental_incremental_batch_size" = "neptune_experimental.incremental_batch_size:initialize"
"experimental_safe_mode" = "neptune_experimental.safe_mode:initialize"
"experimental_partitioned_operation_processor" = "neptune_experimental.partitioned_op_initialization:initialize"
"experimental_default_run_name" = "neptune_experimental.default_run_name:initialize"
"experimental_custom_run_id_len" = "neptune_experimental.custom_run_id_len:initialize"
[tool.poetry.urls]
"Tracker" = "https://github.com/neptune-ai/neptune-client-experimental/issues"
"Documentation" = "https://docs.neptune.ai/"
[tool.black]
line-length = 120
target-version = ['py37', 'py38', 'py39', 'py310']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 120
force_grid_wrap = 2
[tool.flake8]
max-line-length = 120
extend-ignore = "E203"
[tool.mypy]
files = 'src/neptune_experimental'
mypy_path = "stubs"
install_types = "True"
non_interactive = "True"
disallow_untyped_defs = "True"
no_implicit_optional = "True"
check_untyped_defs = "True"
warn_return_any = "True"
show_error_codes = "True"
warn_unused_ignores = "True"
ignore_missing_imports = "True"