From 935011845d02dfc3b9f4cb1e5348a225cfd8231b Mon Sep 17 00:00:00 2001 From: Alexandra Valeanu Date: Sun, 27 Oct 2024 11:33:58 +0200 Subject: [PATCH] Fix project setup and version --- docs/conf.py | 2 +- pyproject.toml | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 3833e6b..7c143b4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ project = 'Kinex' copyright = '2023, Alexandra Valeanu and Jitao David Zhang' author = 'Alexandra Valeanu and Jitao David Zhang' -release = '1.1.1' +release = '1.1.0' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index ee2333c..9437cbb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "kinex" -version = "1.1.1" +version = "1.1.0" description = "A python package to compute kinase scoring and enrichment" authors = [ { name = "Alexandra Valeanu", email = "valeanualexandra17@gmail.com" } @@ -29,4 +29,10 @@ dev = [ ] [tool.setuptools] -package-dir = { "" = "src" } \ No newline at end of file +package-dir = { "" = "src" } + +[tool.setuptools.packages.find] +where = ["src"] + +[tool.setuptools.package-data] +kinex = ["resources/*.csv", "resources/*.json"] \ No newline at end of file