-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.32 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
[tool.poetry]
name = "ed-rvfl-sc"
version = "0.1.1"
description = "Ensemble Deep Random Vector Functional Link (edRVFL) for regression and classification with Keras compatibility"
authors = ["L-A-Sandhu <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "ed_rvfl_sc", from = "src" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Framework :: Jupyter"
]
[tool.poetry.urls]
Homepage = "https://github.com/yourusername/ed-rvfl-sc"
Documentation = "https://github.com/yourusername/ed-rvfl-sc#readme"
Repository = "https://github.com/yourusername/ed-rvfl-sc"
[tool.poetry.dependencies]
python = "^3.9"
numpy = "^1.24.3"
scikit-learn = "^1.3.0"
keras = "^3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
bump2version = "^1.0.1"
twine = "^4.0.2"
build = "^1.0.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = ["src"]