-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
97 lines (88 loc) · 2.42 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
[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"
httpx = { version = ">=0.15.4,<0.27.3", extras = ["http2"] }
attrs = ">=21.3.0"
python-dateutil = "^2.8.0"
PyJWT = "^2.0.0"
protobuf = ">=4,<6"
[tool.poetry]
name = "neptune-api"
version = "0.1.0"
description = "A client library for accessing Neptune API"
authors = ["neptune.ai <contact@neptune.ai>"]
repository = "https://github.com/neptune-ai/neptune-api"
readme = "README.md"
license = "Apache License 2.0"
packages = [
{ include = "neptune_api", from = "src" },
{ include = "neptune_retrieval_api", from = "src" },
]
include = ["CHANGELOG.md", "src/neptune_api/py.typed"]
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-api/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
extend_skip = ["src/neptune_api/proto", "src/neptune_retrieval_api/proto"]
[tool.ruff]
line-length = 120
exclude = ["src/neptune_api/proto", "src/neptune_retrieval_api/proto"]
[tool.ruff.lint]
select = ["F", "UP"]
[tool.mypy]
files = 'src/neptune_api'
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"