This release is a hotfix release to address issue #102.
It adds an __init__.py
file to each of the providers such as azure, gcp, and aws. This insures they are able to be discovered by setuptools.find_packages()
as part of the package publishing process and users can import providers using something like from architectures.providers.azure.ai import CognitiveServices
.
It also fixes an issue where icons were not downloaded when users run pip install architectures
. This was done by adding:
- A
MANIFEST.in
file that recursively includes all icon png files - The
include_package_data=True
attribute tosetup.py
- An
__init__.py
file under the icons folder
Finally, it adds the install_requires
attributes to setup.py
to ensure that graphviz is always installed alongside architectures.