-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Lucas Farris
committed
May 15, 2024
1 parent
290f8b3
commit 66310c8
Showing
3 changed files
with
17 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
[tool.poetry] | ||
name = "deeprecsys" | ||
version = "0.2.2" | ||
version = "0.2.4" | ||
description = "deeprecsys is an open tool belt to speed up the development of modern data science projects at an enterprise level" | ||
authors = ["Lucas Farris <[email protected]>"] | ||
license = "MIT" | ||
license = "GPL-3.0-or-later" | ||
readme = "README.md" | ||
homepage = "https://deeprecsys.com" | ||
repository = "https://github.com/luksfarris/deeprecsys" | ||
documentation = "https://deeprecsys.com" | ||
keywords = ["machinelearning", "reinforcementlearning", "recommmendersystems", "deeplearning", "datascience"] | ||
classifiers = ["Topic :: Scientific/Engineering :: Artificial Intelligence"] | ||
|
||
[[tool.poetry.source]] | ||
name = "cputorch" | ||
|
@@ -15,7 +21,7 @@ priority = "supplemental" | |
python = ">=3.9,<4" | ||
pandas = "^2.2.2" | ||
pyarrow = "^16.1.0" | ||
torch = { version = "^2.3.0+cpu", source = "cputorch", optional = true } | ||
torch = { version = "2.3.0+cpu", source = "cputorch", optional = true } | ||
keras = { version = "^3.3.3", optional = true } | ||
gymnasium = { version = "^0.29.1", optional = true } | ||
tensorboard = {version = "^2.16.2", optional = true} | ||
|
@@ -61,7 +67,7 @@ target-version = "py311" | |
max-complexity = 5 | ||
|
||
[tool.ruff.lint.per-file-ignores] | ||
"tests/**/*.py" = [ | ||
"S101", # assertions | ||
"D103" # function docstrings | ||
] | ||
"tests/**/*.py" = ["S101", "D103"] | ||
|
||
|
||
|