-
Notifications
You must be signed in to change notification settings - Fork 869
/
pyproject.toml
62 lines (54 loc) · 1.78 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
[build-system]
requires = [
"setuptools >= 59.0.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "mlxtend"
authors = [
{name = "Sebastian Raschka", email = "[email protected]"}
]
description="Machine Learning Library Extensions"
dynamic = ["version", "dependencies"]
license= {text = "BSD 3-Clause"}
readme = "README.md"
classifiers=[
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"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",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Image Recognition",
]
[project.optional-dependencies]
testing = ["pytest"]
docs = ["mkdocs", "python-markdown-math", "mkdocs-bootswatch", "nbconvert"]
[project.urls]
Homepage = "https://github.com/rasbt/mlxtend"
Documentation = "https://rasbt.github.io/mlxtend"
Repository = "https://github.com/rasbt/mlxtend"
[tool.setuptools]
platforms = ["any"]
[tool.setuptools.dynamic]
version = {attr = "mlxtend.__version__"}
dependencies = {file = "requirements.txt"}
[tool.setuptools.packages.find]
include = ["mlxtend", "mlxtend.*"]
namespaces = false
[tool.setuptools.package-data]
mlxtend = ["LICENSE-BSD3.txt", "LICENSE-CC-BY.txt", "README.md", "requirements.txt", "mlxtend/data/data/*"]
[tool.pytest.ini_options]
norecursedirs = [
"plotting/*",
"image/*",
"build/",
]