Metadata-Version: 2.1
Name: 1build
Version: 0.0.2
Summary: Unified build tool for all project needs.
Home-page: https://github.com/gopinath-langote/1build
Author: Gopinath Langote
Author-email: gopinathlangote11@gmail.com
License: MIT License
Description: # 1build
        
        [![Build Status](https://travis-ci.org/gopinath-langote/1build.svg?branch=master)](https://travis-ci.org/gopinath-langote/1build)
        
        A simple way to unify build commands across all your projects running original building steps with all their specifics under the hood. It is agnostic to the underlying build tool, and environment preparatory steps are supported too.
        
        ## Why?
        
        Imagine you are a microservices developer switching around multiple projects written in different languages and built with different building processes. Instead of reading README files all the time learning the specifics of how to run every one of them – you can just capture the configuration once and then use a single unified build command. 
        
        With the support of preparatory and clean up steps – you can include various environment preparations and have them run as part of the build.
        
        ## Install
        
        ```bash
        pip install 1build
        ```
        
        or
        
        ```bash
        pip3 install 1build
        ```
        
        ## Usage
        
        ### Configuration
        
        - сreate project configuration file in the project folder
        - file name: `1build.yaml`
        
        Example of `1build.yaml` for JVM maven project:
        ```yaml
        project: Sample JVM Project Name
        commands:
          - build: mvn clean package
          - lint: mvn antrun:run@ktlint-format
        ```
        
        Running 1build for above sample project:
        
        - building the project
        ```bash
        1build build
        ```
        
        - reformat the code lint
        ```bash
        1build lint
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Build Tools
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
