-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
101 lines (90 loc) · 2.56 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.7"
# Python lack of functionalities from future versions
importlib-metadata = { version = "*", python = "<3.8" }
# Base requirements
fastai = ">=2.4"
# dev
pre-commit = { version = "*", optional = true }
pytest = { version = ">=5.0", optional = true }
pytest-tap = { version = "3.2", optional = true }
pytest-cov = { version = "2.10.1", optional = true }
pytest-xdist = { version = "2.2.0", optional = true }
neptune = { version = ">=1.0.0", optional = true }
[tool.poetry.extras]
dev = [
"pre-commit",
"pytest",
"pytest-cov",
"pytest-tap",
"pytest-xdist",
"neptune",
]
[tool.poetry]
authors = ["neptune.ai <contact@neptune.ai>"]
description = "Neptune.ai fast.ai integration library"
repository = "https://github.com/neptune-ai/neptune-fastai"
homepage = "https://neptune.ai/"
documentation = "https://docs.neptune.ai/integrations-and-supported-tools/model-training/fastai"
include = ["CHANGELOG.md"]
license = "Apache License 2.0"
name = "neptune-fastai"
readme = "README.md"
version = "0.0.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_fastai", from = "src" },
]
[tool.poetry.urls]
"Tracker" = "https://github.com/neptune-ai/neptune-fastai/issues"
"Documentation" = "https://docs.neptune.ai/integrations-and-supported-tools/model-training/fastai"
[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"