-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
103 lines (90 loc) · 2.57 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
[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.8"
neptune-api = [
#https://github.com/python-poetry/poetry/pull/9553
{ markers = "extra == 'gcp'", git = "https://github.com/neptune-ai/neptune-api.git", rev = "977eacc46c1705dd6d622d3dde85aedcca9325fa", extras = ["gcp"] },
{ markers = "extra != 'gcp'", git = "https://github.com/neptune-ai/neptune-api.git", rev = "977eacc46c1705dd6d622d3dde85aedcca9325fa" },
]
more-itertools = "^10.0.0"
psutil = "^5.0.0"
backoff = "^2.0.0"
[tool.poetry.extras]
gcp = ["neptune-api"]
[tool.poetry]
name = "neptune-scale"
version = "0.1.0"
description = "A minimal client library"
authors = ["neptune.ai <[email protected]>"]
repository = "https://github.com/neptune-ai/neptune-client-scale"
readme = "README.md"
license = "Apache License 2.0"
packages = [{ include = "neptune_scale", from = "src" }]
include = []
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",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = [
"MLOps",
"ML Experiment Tracking",
"ML Model Registry",
"ML Model Store",
"ML Metadata Store",
]
[tool.poetry.urls]
"Tracker" = "https://github.com/neptune-ai/neptune-client-scale/issues"
"Documentation" = "https://docs.neptune.ai/"
[tool.black]
line-length = 120
target_version = ['py38', 'py39', 'py310', 'py311', 'py312']
include = '\.pyi?$,\_pb2\.py$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 120
force_grid_wrap = 2
[tool.ruff]
line-length = 120
target-version = "py38"
[tool.ruff.lint]
select = ["F", "UP"]
ignore = ["UP006", "UP007"]
[tool.mypy]
files = 'src/neptune_scale'
mypy_path = "stubs"
install_types = "True"
non_interactive = "True"
disallow_untyped_defs = "True"
disallow_any_unimported = "True"
no_implicit_optional = "True"
check_untyped_defs = "True"
warn_return_any = "True"
show_error_codes = "True"
# warn_unused_ignores = "True"