diff --git a/pyproject.toml b/pyproject.toml index 20a4d190..185fd945 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,12 +13,12 @@ # limitations under the License. [project] -name = "nemo-vfm" +name = "dfm" dynamic = [ "version", "readme", ] -description = "NeMo VFM" +description = "NeMo DFM" license = {file = "LICENSE"} requires-python = ">=3.10" authors = [{ name = "NVIDIA", email = "nemo-toolkit@nvidia.com" }] @@ -84,10 +84,10 @@ dev = [ ] [tool.setuptools] -packages = ["nemo_vfm"] +packages = ["dfm"] [tool.setuptools.dynamic] -version = {attr = "nemo_vfm.__version__"} +version = {attr = "dfm.__version__"} readme = {file = "README.md", content-type = "text/markdown"} [project.urls] @@ -101,7 +101,7 @@ addopts = "--verbose --pyargs --durations=0 --strict-markers" # always add thes testpaths = ["tests"] # directories to ignore when discovering tests norecursedirs = [ - "nemo_vfm", + "dfm", "external", "examples", "docs", @@ -172,7 +172,7 @@ ignore = [ "D103", # Missing docstring in public function ] [tool.ruff.lint.isort] -known-first-party = ["nemo_vfm"] +known-first-party = ["dfm"] known-third-party = ["examples", "scripts"] section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"] lines-after-imports = 2 @@ -196,4 +196,4 @@ concurrency = ["thread", "multiprocessing"] omit = ["/tmp/*"] [tool.coverage.paths] -source = ["nemo_vfm/", "/workspace/nemo_vfm"] +source = ["dfm/", "/workspace/dfm"]