-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
71 lines (57 loc) · 2.75 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
[project]
name = "qgate_sln_mlrun" # Required
dynamic = ["version", "readme", "dependencies", "optional-dependencies"]
description = "The quality gate for testing MLRun/Iguazio solution." # Optional
requires-python = ">=3.6"
license = {text = "MIT"}
#license = {file = "LICENSE"}
keywords = ["testing", "data-science", "machine-learning", "quality-assurance", "quality-assessment", "iguazio", "mlrun",
"mlops", "quality-gate", "feature-store"] # Optional
authors = [
{name = "Jiri Steuer", email = "[email protected]" } # Optional
]
maintainers = [
{name = "Jiri Steuer", email = "[email protected]" } # Optional
]
classifiers = [ # Optional
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
]
[project.urls] # Optional
homepage='https://github.com/george0st/qgate-sln-mlrun/'
repository='https://pypi.org/project/qgate-sln-mlrun/'
#"Homepage" = 'https://github.com/george0st/qgate-perf/'
#download_url='https://pypi.org/project/qgate_perf/'
#"Source" = "https://github.com/pypa/sampleproject/"
[tool.setuptools]
packages = ["qgate_sln_mlrun", "qgate_sln_mlrun.helper", "qgate_sln_mlrun.templates", "qgate_sln_mlrun.model_changes",
"qgate_sln_mlrun.ts", "qgate_sln_mlrun.ts.ts01_project", "qgate_sln_mlrun.ts.ts02_feature_set",
"qgate_sln_mlrun.ts.ts03_ingest_data", "qgate_sln_mlrun.ts.ts04_ingest_data_pipeline", "qgate_sln_mlrun.ts.ts05_feature_vector",
"qgate_sln_mlrun.ts.ts06_get_data", "qgate_sln_mlrun.ts.ts07_pipeline", "qgate_sln_mlrun.ts.ts08_build_model",
"qgate_sln_mlrun.ts.ts09_serve_model", "qgate_sln_mlrun.ts.ts10_model_monitoring"]
include-package-data = true # true - add other data such as *.txt, *.html, etc. under all packages
[tool.setuptools.package-data]
"*" = ["*.txt", "*.html", "*.json"]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
version = {attr = "qgate_sln_mlrun.__version__"}
dependencies = { file = ["requirements.txt"] }
optional-dependencies.dev = { file = ["dev-requirements.txt"] }