-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (70 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
74 lines (70 loc) · 1.55 KB
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
[build-system]
requires = [
"hatchling>=1.6.0",
]
build-backend = "hatchling.build"
[project]
name = "ml-tooling"
description = "A library for machine learning utilities"
version = "0.12.1"
readme = "README.md"
license = "MIT"
requires-python = ">=3.7"
authors = [
{ name = "Anders Bogsnes", email = "andersbogsnes@gmail.com" },
]
keywords = [
"framework",
"ml",
"tooling",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"attrs",
"joblib",
"matplotlib",
"pandas",
"pyyaml",
"scikit-learn",
"scikit-optimize",
"sqlalchemy",
]
[project.optional-dependencies]
artifactory = [
"dohq-artifactory",
]
dev = [
"pre-commit",
"pytest",
"pytest-cov",
"sphinx",
"sphinx_rtd_theme",
"tox",
]
docs = [
"sphinx",
"sphinx_rtd_theme",
]
tests = [
"pytest",
"pytest-cov",
]
[project.urls]
"Bug Tracker" = "https://github.com/andersbogsnes/ml_tooling/issues"
Documentation = "https://ml-tooling.readthedocs.io/en/stable/"
Homepage = "https://github.com/andersbogsnes/ml_tooling"
"Source Code" = "https://github.com/andersbogsnes/ml_tooling"
[tool.hatch.build.targets.sdist]
include = [
"/src",
]