Metadata-Version: 2.1
Name: COMPAS
Version: 0.3.4
Summary: The COMPAS framework
Home-page: http://compas-dev.github.io
Author: Tom Van Mele
Author-email: van.mele@arch.ethz.ch
License: MIT
Project-URL: Documentation, http://compas-dev.github.io
Project-URL: Forum, https://forum.compas-framework.org/
Project-URL: Repository, https://github.com/compas-dev/compas
Project-URL: Issues, https://github.com/compas-dev/compas/issues
Description: # The COMPAS framework
        
        [![Build Status](https://travis-ci.com/compas-dev/compas.svg?branch=develop)](https://travis-ci.com/compas-dev/compas)
        
        
        The **COMPAS** framework is an open-source, Python-based framework for computational research and collaboration in architecture, engineering and digital fabrication.
        
        The main library consists of a core package (**compas**) and several additional
        packages for integration of the core functionality in CAD software (currently: **compas_blender**, **compas_rhino**, **compas_ghpython**).
        
        The core package defines all *real* functionality.
        The CAD packages simply provide a unified framework for processing, visualising, and interacting with geometry and datastructures, and for building user interfaces in different CAD software.
        
        
        ## Getting Started
        
        The recommended way to install **COMPAS** is to use [Anaconda/conda](https://conda.io/docs/):
        
            $ conda config --add channels conda-forge
            $ conda install COMPAS
        
        But it can also be installed using `pip`:
        
            $ pip install COMPAS
        
        To verify your setup, start Python from the command line and run the following:
        
        ```python
        
        >>> import compas
        >>> import compas_rhino
        >>> import compas_blender
        >>> import compas_ghpython
        
        ```
        
        Alternatively, you can also install from source. Check the [documentation for more details](https://compas-dev.github.io/main/devguide.html).
        
        
        ## First Steps
        
        * https://compas-dev.github.io/main/examples.html
        * https://compas-dev.github.io/main/tutorial.html
        * https://compas-dev.github.io/main/api.html
        
        
        ## Questions and feedback
        
        The **COMPAS** framework has a forum: https://forum.compas-framework.org/
        for questions and discussions.
        
        
        ## Issue tracker
        
        If you find a bug, please help us solve it by [filing a report](https://github.com/compas-dev/compas/issues).
        
        
        ## Contributing
        
        If you want to contribute, check out our [developer guidelines](https://compas-dev.github.io/main/devguide.html).
        
        
        ## License
        
        The main library of **COMPAS** is [released under the MIT license](https://compas-dev.github.io/main/license.html).
        
Keywords: architecture,fabrication,engineering
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=2.7
Description-Content-Type: text/markdown
Provides-Extra: viewers
Provides-Extra: optimisation
Provides-Extra: robotics
