Skip to content

Commit

Permalink
Added more info to the project file
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Farris committed May 15, 2024
1 parent 290f8b3 commit 9e5f197
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 12 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@ name = "deeprecsys"
version = "0.2.2"
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"
Expand All @@ -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}
Expand Down Expand Up @@ -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"]



0 comments on commit 9e5f197

Please sign in to comment.