معرفی شرکت ها


autorecipes-0.2.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Generic Conan recipes for CMake and Python projects.
ویژگی مقدار
سیستم عامل -
نام فایل autorecipes-0.2.0
نام autorecipes
نسخه کتابخانه 0.2.0
نگهدارنده ['John Freeman']
ایمیل نگهدارنده ['jfreeman08@gmail.com']
نویسنده John Freeman
ایمیل نویسنده jfreeman08@gmail.com
آدرس صفحه اصلی https://github.com/thejohnfreeman/autorecipes/
آدرس اینترنتی https://pypi.org/project/autorecipes/
مجوز ISC
.. start-include =========== autorecipes =========== Generic Conan_ recipes for C/C++ and Python projects. .. _Conan: https://docs.conan.io/ .. image:: https://api.bintray.com/packages/jfreeman/jfreeman/autorecipes%3Ajfreeman/images/download.svg :target: https://bintray.com/jfreeman/jfreeman/autorecipes%3Ajfreeman/_latestVersion :alt: Latest Bintray version .. .. image:: https://readthedocs.org/projects/autorecipes/badge/?version=latest :target: https://autorecipes.readthedocs.io/ :alt: Documentation status .. image:: https://travis-ci.org/thejohnfreeman/autorecipes.svg?branch=master :target: https://travis-ci.org/thejohnfreeman/autorecipes :alt: Build status: Linux and OSX .. image:: https://ci.appveyor.com/api/projects/status/github/thejohnfreeman/autorecipes?branch=master&svg=true :target: https://ci.appveyor.com/project/thejohnfreeman/autorecipes :alt: Build status: Windows C/C++ ===== If your project - uses CMake_, - and installs a `package configuration file`__ - that defines the variable ``<PACKAGE_NAME>_COMPONENTS`` - with a list of components, - and for each of them defines a target ``<package_name>::<component>``, then you should be able to copy this recipe to package it for Conan: .. _CMake: https://cmake.org/cmake/help/latest/ .. __: https://cmake.org/cmake/help/latest/manual/cmake-packages.7.html#package-configuration-file .. code-block:: python from conans import python_requires CMakeConanFile = python_requires('autorecipes/[*]@jfreeman/testing').cmake() class Recipe(CMakeConanFile): name = CMakeConanFile.__dict__['name'] version = CMakeConanFile.__dict__['version'] Python ====== If your project - uses Poetry_, - with a ``pyproject.toml`` package metadata file as defined in `PEP 518`_, .. _Poetry: https://poetry.eustace.io/docs/ .. _PEP 518: https://www.python.org/dev/peps/pep-0518/ then you should be able to copy this recipe to package it for Conan: .. code-block:: python from conans import python_requires PythonConanFile = python_requires('autorecipes/[*]@jfreeman/testing').python() class Recipe(PythonConanFile): name = PythonConanFile.__dict__['name'] version = PythonConanFile.__dict__['version'] FAQ === .. Look at this fucking joke of a syntax. Just let me nest! - **Why do I need to copy the** ``name`` **and** ``version`` **attributes from the base class?** Conan parses the recipe looking for the ``name`` and ``version`` attributes, instead of just executing it. Thus, we must copy the attributes to move past that check. Further, these attributes are descriptors_. Accessing them with dot notation, like ``CMakeConanFile.name``, evaluates them against the class ``CMakeConanFile`` instead of your recipe, but they need the most derived type to work correctly. .. _descriptors: https://docs.python.org/3/howto/descriptor.html - **Can I override some attributes?** Yes. These base classes just provide default values. .. end-include


نیازمندی

مقدار نام
>=1.8,<2.0) sphinx
>=0.4.3,<0.5.0) sphinx_rtd_theme
>=0.10.0,<0.11.0 toml
>=1.14,<2.0 conan
>=3.7,<4.0 typing_extensions


زبان مورد نیاز

مقدار نام
>=3.6-dev,<4.0 Python


نحوه نصب


نصب پکیج whl autorecipes-0.2.0:

    pip install autorecipes-0.2.0.whl


نصب پکیج tar.gz autorecipes-0.2.0:

    pip install autorecipes-0.2.0.tar.gz