-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
101 lines (89 loc) · 2.34 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
[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"
# Base neptune package
neptune-api = "0.8.0b0"
# Optional for default progress update handling
tqdm = { version = ">=4.66.0" }
pandas = { version = ">=1.4.0" }
[tool.poetry]
authors = ["neptune.ai <[email protected]>"]
description = "Neptune Fetcher"
repository = "https://github.com/neptune-ai/neptune-fetcher"
homepage = "https://neptune.ai/"
documentation = "https://docs.neptune.ai/"
license = "Apache License 2.0"
name = "neptune-fetcher"
readme = "README.md"
version = "0.1.0"
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_fetcher", from = "src" },
]
[tool.poetry.urls]
"Tracker" = "https://github.com/neptune-ai/neptune-fetcher/issues"
"Documentation" = "https://docs.neptune.ai/"
[tool.black]
line-length = 120
target-version = ['py37', 'py38', 'py39', 'py310']
include = '\.pyi?$,\_pb2\.py$'
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"
exclude = [
"src/neptune/api/proto/*"
]
[tool.mypy]
files = 'src/neptune_fetcher'
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"