diff --git a/poetry.lock b/poetry.lock index 74a8c00..aa143c6 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1948,4 +1948,4 @@ recsys = ["gymnasium", "highway-env", "keras", "tensorboard", "torch", "torchviz [metadata] lock-version = "2.0" python-versions = ">=3.9,<4" -content-hash = "e423dbfce30b4c65d839bc5c7856ba476957f608a28e4a2fb3fca5d384da2006" +content-hash = "cd342a443a9ec2cdeff4dc8970328cf727edea782407f3b695c15da0f9b521ac" diff --git a/pyproject.toml b/pyproject.toml index 55b7fec..fbcf2a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] -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 -] \ No newline at end of file +"tests/**/*.py" = ["S101", "D103"] + + +