-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (43 loc) · 1.33 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
[tool.poetry]
name = "kca"
version = "0.0.7dev"
description = "Keras Core Addons: Useful extra functionality for Keras Core."
license = "MIT"
authors = ["Prannaya Gupta <prannayagupta@programmer.net>"]
readme = "README.md"
homepage = "https://github.com/terminalai/kca"
repository = "https://github.com/terminalai/kca"
keywords = ["keras", "keras-core", "addons", "machine", "learning"]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"License :: OSI Approved :: MIT License",
"Development Status :: 1 - Planning",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
]
[tool.poetry.urls]
"Documentation" = "https://github.com/terminalai/kca"
"Bug Tracker" = "https://github.com/terminalai/kca/issues"
[tool.poetry.dependencies]
python = ">=3.8"
numpy = "<=1.24"
tensorflow = "~=2.12.0"
keras-core = "~=0.1.15"
[tool.poetry.dev-dependencies]
flake8 = ">=3.8.4"
mypy = ">=0.930"
pytest = ">=6.1.2"
pytest-cov = ">=2.10.1"
pytest-remotedata = ">=0.3.2"
pytest-doctestplus = ">=0.8.0"
pytest-xdist = ">=2.1.0"
jupyter = ">=1.0.0"
pylint = ">=2.6.0"
[tool.poetry.group.dev.dependencies]
ghp-import = "^2.1.0"
[build-system]
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"