Git Product home page Git Product logo

setuptools-pyecore's Introduction

setuptools-pyecore

Build Status Coverage Status PyPI Version GitHub Version License

A setuptools command for generating Python code from Ecore models.

This is an extension for setuptools integrating the pyecoregen code generator into the Python packaging process. It encapsulates pyecoregen and provides the user a setuptools command called pyecore to control the generation process.

In a basic setup the user doesn't have to configure the generation process at all because setuptools-pyecore discovers Ecore models located in the current working directory and triggers the code generation for each detected Ecore model. Also a meaningful output folder is chosen automatically.

Of course the user has to possibility to customize the generation process. The command line options of pyecoregen are also available through the pyecore setuptools command. The user has the choice to pass the options on the command line or configure the code generation in a dedicated section in the setup.cfg file.

setuptools-pyecore can be installed in various ways. To run it the following prerequisites have to be fulfilled:

  • Python 3.4+
  • setuptools

After installation, the used Python environment has a new setuptools command called pyecore.

> git clone https://github.com/pyecore/setuptools-pyecore.git
> cd setuptools-pyecore
> pip install .
> pip install setuptools-pyecore
> pip install <setuptools-pyecore_wheel>

For a smooth user experience it's recommended to pass setuptools-pyecore using the setup_requires argument of setup function. Additionally the generated Python code depends on the pyecore library which should be added to install_requires argument:

setup(
    ...
    setup_requires=['setuptools-pyecore'],
    install_requires=['pyecore']
    ...
)

Before generating Python code from a given Ecore model setuptools will automatically check the Python environment and download setuptools-pyecore from PyPI if it's missing. During the installation of the project package pip will install pyecore into the Python environment.

setuptools-pyecore provides two possibilities to configure the pyecore generator.

All options can be passed on the command line after the pyecore command:

> python setup.py pyecore --auto-register-package

It's also possible to pass several options to pyecoregen or execute multiple commands at once:

> python setup.py pyecore --auto-register-package --output "default=gen" bdist_wheel

See python setup.py pyecore --help for available command line options:

> python setup.py pyecore --help
...
Options for 'PyEcoreCommand' command:
  --ecore-models (-e)      specify Ecore models to generate code for
  --output (-o)            specify directories where output is generated
  --user-modules           dotted names of modules with user-provided mixins
                           to import from generated classes
  --auto-register-package  Generate package auto-registration for the PyEcore
                           'global_registry'
...

The pyecoregen documentation explains all command line options in detail.

Apart from passing options on the command line it's also possible to add a dedicated [pyecore] section to setup.cfg. The following example section contains all available options:

[pyecore]
# Specify Ecore models to generate code for; default: None
#ecore-models = <ecore-model> [<ecore-model> ...]
# Specify directories where output is generated; default: <ecore-model-dir>
output = default=gen
# Dotted names of modules with user-provided mixins to import from generated classes; default: None
#user-modules = [<ecore-model>=<user module>]
#               [<ecore-model>=<user module> ...]
# Generate package auto-registration for the PyEcore 'global_registry' (yes|no); default: no
auto-register-package = yes

A reference configuration is provided in the resources directory.

pyecoregen inherits the log level globally configured for setuptools. To set the verbosity to a certain log level pass the global options verbose or quiet straight before the pyecore command on the command line:

> python setup.py --verbose pyecore

Alternatively, you can add these options to the [global] section of your setup.cfg:

[global]
# Run verbosely (yes|no); default: yes
#verbose = yes
# Run quietly and turns verbosity off (yes|no); default: no
quiet = yes

Besides the setuptools-pyecore source code a sample project called library is provided in the samples directory. This sample consists of the Ecore model library and a setup script. During the execution of setuptools-pyecore a Python package will be generated into the library package directory representing the classes from the library Ecore model.

To generate code out of the Ecore model and build a library wheel package execute the following command:

> python setup.py pyecore bdist_wheel

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.