Metadata-Version: 2.1
Name: aac-spec
Version: 0.1.1
Summary: Specification plugin for AaC
Author-email: bunchw <asdfasdaf@email.com>
License: MIT License
Project-URL: Homepage, https://github.com/DevOps-MBSE/aac-spec
Project-URL: Issues, https://github.com/DevOps-MBSE/aac-spec/issues
Requires-Python: >=3.9.13
Description-Content-Type: text/markdown
Requires-Dist: aac>=0.4.3


PYTHON VERSION COMPATIBILITY:
   Currently, Python version 3.9.13 is required to avoid certain dependency version issues.

pyproject.toml vs setup.py
    Previously, this project was built with dependency information kept in a setup.py script.
    However, the preferred method is to use pyproject.toml to set the project-level options.
    Required modules are kept in the requirements.in file, and then the pip-compile command is
    used to add hashes to the requirements.txt file for enhanced security (see additional
    instructions below).
    To coincide with these changes, some changes to tox.ini and the addition of a MANIFEST.ini file were also necessary.
    These lines were added to tox.ini:
        isolated_build = True
        skipsdist = True
    A MANIFEST file with these lines was added:
        graft src
        graft tests
        include tox.ini
        include src/specifications/specifications.aac

TO BUILD FROM TERMINAL:
   cd python
   pip install -e .

TO TEST FROM TERMINAL:
   cd python
   pip install -e .
   python -m unittest

To generate a requirements.txt file populated with hashes, use:
   pip install pip-tools
   pip-compile requirements.in --generate-hashes
