| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| [build-system] |
| requires = ["setuptools >= 61.0"] |
| build-backend = "setuptools.build_meta" |
|
|
| [project] |
| name = "nemo-toolkit" |
| dynamic = ["dependencies", "optional-dependencies", "version"] |
| description = "NeMo - a toolkit for Conversational AI" |
| readme = "README.md" |
| license = {file = "LICENSE"} |
| requires-python = ">=3.10" |
| authors = [{ name = "NVIDIA", email = "nemo-toolkit@nvidia.com" }] |
| maintainers = [{ name = "NVIDIA", email = "nemo-toolkit@nvidia.com" }] |
| keywords = [ |
| "NLP", |
| "NeMo", |
| "deep", |
| "gpu", |
| "language", |
| "learning", |
| "learning", |
| "machine", |
| "nvidia", |
| "pytorch", |
| "speech", |
| "torch", |
| "tts", |
| ] |
| classifiers = [ |
| "Development Status :: 5 - Production/Stable", |
| "Environment :: Console", |
| "Intended Audience :: Developers", |
| "Intended Audience :: Information Technology", |
| "Intended Audience :: Science/Research", |
| "License :: OSI Approved :: Apache Software License", |
| "Natural Language :: English", |
| "Operating System :: OS Independent", |
| "Programming Language :: Python :: 3", |
| "Programming Language :: Python :: 3.10", |
| "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| "Topic :: Scientific/Engineering :: Image Recognition", |
| "Topic :: Scientific/Engineering :: Mathematics", |
| "Topic :: Scientific/Engineering", |
| "Topic :: Software Development :: Libraries :: Python Modules", |
| "Topic :: Software Development :: Libraries", |
| "Topic :: Utilities", |
| ] |
|
|
| [tool.setuptools] |
| py-modules = ["nemo"] |
|
|
| [project.entry-points."nemo_run.cli"] |
| llm = "nemo.collections.llm" |
|
|
| [project.urls] |
| Download = "https://github.com/NVIDIA/NeMo/releases" |
| Homepage = "https://github.com/nvidia/nemo" |
|
|
| [tool.isort] |
| profile = "black" |
| line_length = 119 |
| ignore_whitespace = true |
| py_version = 310 |
| known_first_party = ["nemo"] |
| known_third_party = ["nemo_text_processing", "examples", "scripts"] |
| sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"] |
| default_section = "THIRDPARTY" |
| extend_skip = ["setup.py", "docs/source/conf.py"] |
|
|
|
|
| [tool.black] |
| line_length = 119 |
| skip_string_normalization = true |
| |
| |
| |
| required_version = "24" |
| target-version = ['py310', 'py311', 'py312'] |
| extend-exclude = ''' |
| # A regex preceded with ^/ will apply only to files and directories |
| # in the root of the project. |
| # include here only current collections, new collections should not be ignored |
| # exclude the collection once it is reformatted (due to changes in PRs) |
| ( |
| ^\/docs\/ |
| | ^\/external\/ |
| | ^\/examples\/ |
| | ^\/nemo\/collections\/asr\/ |
| | ^\/nemo\/collections\/common\/ |
| | ^\/nemo\/collections\/multimodal\/ |
| | ^\/nemo\/collections\/nlp\/ |
| | ^\/nemo\/collections\/tts\/ |
| | ^\/nemo\/collections\/vision\/ |
| | ^\/nemo\/core\/ |
| | ^\/nemo\/utils\/ |
| | ^\/scripts\/ |
| | ^\/tests\/ |
| | ^\/tools\/ |
| | ^\/tutorials\/ |
| | ^\/setup.py |
| ) |
| ''' |
|
|
| [tool.pytest.ini_options] |
| |
| |
| addopts = "--verbose --pyargs --durations=0 --strict-markers" |
| testpaths = ["tests"] |
| pythonpath = ["tests/e2e_nightly"] |
| |
| norecursedirs = [ |
| "nemo", |
| "nemo_text_processing", |
| "external", |
| "examples", |
| "docs", |
| "scripts", |
| "tools", |
| "tutorials", |
| "*.egg", |
| ".*", |
| "_darcs", |
| "build", |
| "CVS", |
| "dist", |
| "venv", |
| "{arch}", |
| "e2e_nightly" |
| ] |
| |
| markers = [ |
| "unit: marks unit test, i.e. testing a single, well isolated functionality (deselect with '-m \"not unit\"')", |
| "integration: marks test checking the elements when integrated into subsystems (deselect with '-m \"not integration\"')", |
| "system: marks test working at the highest integration level (deselect with '-m \"not system\"')", |
| "acceptance: marks test checking whether the developed product/model passes the user defined acceptance criteria (deselect with '-m \"not acceptance\"')", |
| "docs: mark tests related to documentation (deselect with '-m \"not docs\"')", |
| "skipduringci: marks tests that are skipped ci as they are addressed by Jenkins jobs but should be run to test user setups", |
| "pleasefixme: marks tests that are broken and need fixing", |
| ] |
|
|
| [tool.uv] |
| conflicts = [ |
| [ |
| { extra = "cu12" }, |
| { extra = "cu13" }, |
| ], |
| ] |
|
|
| [dependency-groups] |
| docs = [ |
| "myst-parser>=4.0.1", |
| "nvidia-sphinx-theme>=0.0.8", |
| "sphinx>=8.1.3", |
| "sphinx-autobuild>=2024.10.3", |
| "sphinx-autodoc2>=0.5.0", |
| "sphinx-copybutton>=0.5.2", |
| "sphinxcontrib-mermaid", |
| "sphinxcontrib-bibtex", |
| "sphinxext-opengraph" |
| ] |
|
|