-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.02 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
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "wisardlib"
version = "0.0.1-dev"
description = "The WiSARD weigthless neural network"
readme = "README.md"
authors = [{name = "Otavio Napoli", email = "otavio.napoli@gmail.com"}]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
]
keywords = ["wisard", "ram-net", "machine learning", "wnn", "weigthless neural networks"]
dependencies = [
"numba >= 0.56",
"numpy",
"pandas",
"scikit-learn",
"tqdm",
"pyprobables"
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = [
"black",
"isort",
"pytest",
"ipython",
"sphinx",
"sphinx-autoapi",
"sphinx_rtd_theme",
"nbsphinx",
"pandoc",
"Ipython",
"toml"
]
[project.urls]
"Homepage" = "https://github.com/otavioon/wisardlib"
"Bug Tracker" = "https://github.com/otavioon/wisardlib/issues"