diff --git a/docs/source/conf.py b/docs/source/conf.py index e98a469c..b47b45c9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,7 +23,7 @@ author = "NREL" # The full version, including alpha/beta/rc tags -release = "v1.0.0" +release = "v1.1.0" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 9cde50ef..00205839 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "nrel.hive" -version = "1.0.0" +version = "1.1.0" description = "HIVE is a mobility services research platform developed by the Mobility and Advanced Powertrains (MBAP) group at the National Renewable Energy Laboratory in Golden, Colorado, USA." readme = "README.md" authors = [{ name = "National Renewable Energy Laboratory" }] @@ -62,5 +62,10 @@ hive-batch = "nrel.hive.app.run_batch:run" [tool.black] line-length = 100 +[tool.setuptools.packages.find] +where = ["."] # list of folders that contain the packages (["."] by default) +include = ["nrel*"] # package names should match these glob patterns (["*"] by default) +exclude = ["rust*"] + [tool.setuptools.package-data] "*" = ["py.typed"] \ No newline at end of file