Metadata-Version: 2.1
Name: vili
Version: 1.1.0
Summary: PyVili is a Python API to manipulate Vili Data files
Home-page: https://github.com/Sygmei/PyVili
Author: Sygmei
Author-email: sygmei@sygmei.io
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/Sygmei/PyVili/issues
Project-URL: Source, https://github.com/Sygmei/PyVili
Description: # PyVili
        
        PyVili is a Python API to manipulate Vili Data files
        
        You can install it using the following command : `pip install vili`
        
        ## What does vili files look likes ?
        
        ```yaml
        Person: # This is how you define a ComplexNode (object)
            animal:"Homo Sapiens" # You can use strings
            legs:2 # And also integers
            arms:2
        
        Cat:
            animal:"Felis silvestris catus"
            legs:4
        
        Jack(Person):
            criminal:True # You can use booleans (True / False)
            age:32
            name:"Jack"
            surname:"Sparrow"
            weight:76.4 # Vili also support floats
        
        Billy(Cat):
            activities:[ # A simple list
                "Chasing mice",
                "Eating food"
                "Sleeping"
            ]
        
        House:
            inhabitants:
                billy:&Billy # You can reference an existing object
                jack:&Jack
        ```
Keywords: vili data language config
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.6, <4
Description-Content-Type: text/markdown
Provides-Extra: test
