-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (25 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
31 lines (25 loc) · 1.04 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "MLtools"
dynamic = ["version"]
description = "Usefull libraries for Machine Learning"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "Apache-2.0"}
authors = [{name = "ben", email = "bthekkel1@gmail.com"}]
keywords = ['nbdev', 'jupyter', 'notebook', 'python']
classifiers = ["Natural Language :: English", "Intended Audience :: Developers", "Development Status :: 3 - Alpha", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only"]
dependencies = ['pandas>=2.0', 'altair', 'vega_datasets', 'numpy', 'matplotlib', 'geopandas', 'mitosheet', 'seaborn', 'ipywidgets', 'latexify-py']
[project.urls]
Repository = "https://github.com/bthek1/MLtools"
Documentation = "https://bthek1.github.io/MLtools"
[project.entry-points.nbdev]
MLtools = "MLtools._modidx:d"
[tool.setuptools.dynamic]
version = {attr = "MLtools.__version__"}
[tool.setuptools.packages.find]
include = ["MLtools"]
[tool.nbdev]
jupyter_hooks = true