Metadata-Version: 2.1
Name: pycep-parser
Version: 0.0.1a2
Summary: A Python based Bicep parser
Home-page: https://github.com/gruebel/pycep
License: Apache-2.0
Keywords: bicep,parser,lark
Author: Anton Grübel
Author-email: anton.gruebel@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Typing :: Typed
Requires-Dist: lark (>=1.0.0,<2.0.0)
Requires-Dist: typing-extensions (>=4.0.1,<5.0.0)
Project-URL: Repository, https://github.com/gruebel/pycep
Description-Content-Type: text/markdown

# pycep

[![PyPI](https://img.shields.io/pypi/v/pycep-parser)](https://pypi.org/project/pycep-parser/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pycep-parser)](https://github.com/gruebel/pycep)

A fun little project, which has the goal to parse
[Azure Bicep](https://github.com/Azure/bicep) files.
This is still a very early stage, therefore a lot can and will change.

## Next milestones

### General
- [x] Complete loop support
- [x] Param decorator
- [x] Resource/Module decorator
- [x] Target scope
- [ ] Existing resource keyword
- [ ] Module alias
- [ ] Deployment condition
- [x] Adding line numbers to element blocks

### Operators
- [ ] Comparison
  - [ ] Greater than or equal
  - [ ] Greater than
  - [ ] Less than or equal
  - [ ] Less than
  - [x] Equals
  - [x] Not equals
  - [x] Equals case-insensitive
  - [x] Not equals case-insensitive
- [ ] Logical
  - [ ] And
  - [ ] Or
  - [ ] Not
  - [ ] Coalesce
  - [x] Conditional expression

### CI/CD
- [x] Create a package
- [x] Publish package to `pypi`
- [x] Add GitHub workflow for PR & master branch
- [ ] Add test coverage

## Considering
- Adding line numbers to other parts

## Out-of-scope
- Bicep to ARM converter and vice versa

