-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (23 loc) · 862 Bytes
/
pyproject.toml
File metadata and controls
28 lines (23 loc) · 862 Bytes
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
[project]
name = "mlmodelling"
authors = [{ name = "Xav Silverith", email = "rixsilverith@outlook.com" }]
description = "Experimental machine learning library that provides readable yet efficient implementations of fundamental ML models, written using NumPy"
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ["version"]
requires-python = ">=3.7"
urls = { repository = "https://github.com/rixsilverith/mlmodelling" }
dependencies = [
"numpy", "matplotlib",
"pyqt5", # needed as a GUI backend for matplotlib
"cvxopt", "scikit-learn", "terminaltables", "progressbar"
]
[project.optional-dependencies]
dev = ['pytest']
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["mlmodelling"]
[tool.setuptools.dynamic]
version = { attr = "mlmodelling.__version__" }