The Anatomy of Python Packages and pyproject.toml

Поделиться
HTML-код
  • Опубликовано: 12 сен 2024
  • This videos uncovers the idea of modules and packages, differentiating between them and creating a package to distribute using the pyproject.toml file.
    [build-system]
    requires = ["setuptools", "wheel"]
    build-backend = "setuptools.build_meta"
    [project]
    name = "your-package-name"
    version = "0.1.0"
    description = "A short description of your package"
    authors = [
    { name = "Your Name", email = "your.email@example.com" }
    ]
    dependencies = [
    "requests",
    "numpy"
    ]
    [tool.setuptools]
    packages = ["your_package"] # Replace with your actual package name
    Additionally you can find my video courses on Pluralsight: pluralsight.com... and take time to see my own site www.theurbanpen...

Комментарии • 1

  • @shkronjax
    @shkronjax 19 дней назад

    As always great and concise content. Thanks.