A tool to automate package creation within ci based on just .py and optionally .ipynb file.
Project description
Package auto assembler
Package auto assembler is a tool that meant to streamline creation of single module packages. Its purpose is to automate as many aspects of python package creation as possible, to shorten a development cycle of reusable components, maintain certain standard of quality for reusable code. It provides tool to simplify the process of package creatrion to a point that it can be triggered automatically within ci/cd pipelines, with minimal preparations and requirements for new modules.
import sys
sys.path.append('../')
from package_auto_assembler import (VersionHandler, \
ImportMappingHandler, RequirementsHandler, MetadataHandler, \
LocalDependaciesHandler, LongDocHandler, SetupDirHandler, \
ReleaseNotesHandler, MkDocsHandler, PackageAutoAssembler, \
DependenciesAnalyser)
1. Package versioning
Package versioning within paa is done based on semantic versioning.
major.minor.patch
By default, patch is updated, but the minor and major could also be update based on, for example, commit messages or manually from the log file.
Package auto assembler does try to pull latest version from package storage, but in case of failure uses version logs.
Initialize VersionHandler
pv = VersionHandler(
# required
versions_filepath = '../tests/package_auto_assembler/other/lsts_package_versions.yml',
log_filepath = '../tests/package_auto_assembler/other/version_logs.csv',
# optional
default_version = "0.0.1")
Add new package
pv.add_package(
package_name = "new_package",
# optional
version = "0.0.1"
)
Update package version
pv.increment_patch(
package_name = "new_package"
)
## for not tracked package
pv.increment_patch(
package_name = "another_new_package",
# optional
default_version = "0.0.1"
)
There are no known versions of 'another_new_package', 0.0.1 will be used!
Display current versions and logs
pv.get_versions(
# optional
versions_filepath = '../tests/package_auto_assembler/other/lsts_package_versions.yml'
)
{'another_new_package': '0.0.1', 'new_package': '0.0.2'}
pv.get_version(
package_name='new_package'
)
'0.0.2'
pv.get_logs(
# optional
log_filepath = '../tests/package_auto_assembler/other/version_logs.csv'
)
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
</style>
Timestamp | Package | Version | |
---|---|---|---|
0 | 2024-07-29 03:26:39 | new_package | 0.0.1 |
1 | 2024-07-29 03:26:40 | new_package | 0.0.2 |
2 | 2024-07-29 03:26:40 | another_new_package | 0.0.1 |
Flush versions and logs
pv.flush_versions()
pv.flush_logs()
Get latest available version with pip
pv.get_latest_pip_version(package_name = 'package-auto-assembler')
'0.3.1'
2. Import mapping
Install and import names of dependencies may vary. The mapping files maps import names to install names so that requirements extraction from .py
files is possible.
Initialize ImportMappingHandler
im = ImportMappingHandler(
# required
mapping_filepath = "../env_spec/package_mapping.json"
)
Load package mappings
im.load_package_mappings(
# optional
mapping_filepath = "../env_spec/package_mapping.json"
)
{'PIL': 'Pillow',
'bs4': 'beautifulsoup4',
'fitz': 'PyMuPDF',
'attr': 'attrs',
'dotenv': 'python-dotenv',
'googleapiclient': 'google-api-python-client',
'google_auth_oauthlib': 'google-auth-oauthlib',
'sentence_transformers': 'sentence-transformers',
'flask': 'Flask',
'stdlib_list': 'stdlib-list',
'sklearn': 'scikit-learn',
'yaml': 'pyyaml',
'package_auto_assembler': 'package-auto-assembler',
'git': 'gitpython'}
3. Extracting and merging requirements
Maintaining requirements is much simpler, when done automatically based on the .py
files.
The actual requirements files is still constructed. Standard libraries are not added, others are added with their versions, if specified. Local files are also used as dependencies, from which imports are extracted as well.
For example:
import os
import pandas
import attr #>=22.2.0
from .components.local_dep import *
produces
pandas
attrs >=22.2.0
yaml
as requirements file, where yaml
is extracted from local_dep.py
file.
Checking dependecies for vulnerabilities is usefull and it is done with pip audit
which is integrated into the paa package and is used by default.
Optional requirements for extras_require
could be probided the same way normal requirements are, but each like that contains an import like that should be commented out in a special way, starting with #!
, for example:
import os
import pandas
import attr #>=22.2.0
#! import hnswlib #==0.8.0
produces
pandas
attrs >=22.2.0
hnswlib==0.8.0; extra == "hnswlib"
Initialize RequirementsHandler
rh = RequirementsHandler(
# optional/required later
module_filepath = "../tests/package_auto_assembler/other/example_module.py",
package_mappings = {'PIL': 'Pillow',
'bs4': 'beautifulsoup4',
'fitz': 'PyMuPDF',
'attr': 'attrs',
'dotenv': 'python-dotenv',
'googleapiclient': 'google-api-python-client',
'sentence_transformers': 'sentence-transformers',
'flask': 'Flask',
'stdlib_list': 'stdlib-list',
'sklearn': 'scikit-learn',
'yaml': 'pyyaml'},
requirements_output_path = "../tests/package_auto_assembler/other/",
output_requirements_prefix = "requirements_",
custom_modules_filepath = "../tests/package_auto_assembler/dependancies",
python_version = '3.8',
add_header = True
)
List custom modules for a given directory
rh.list_custom_modules(
# optional
custom_modules_filepath="../tests/package_auto_assembler/dependancies"
)
['example_local_dependacy_1', 'example_local_dependacy_2']
Check if module is a standard python library
rh.is_standard_library(
# required
module_name = 'example_local_dependacy_1',
# optional
python_version = '3.8'
)
False
rh.is_standard_library(
# required
module_name = 'logging',
# optional
python_version = '3.8'
)
True
Extract requirements from the module file
rh.extract_requirements(
# optional
module_filepath = "../tests/package_auto_assembler/other/example_module.py",
custom_modules = ['example_local_dependacy_2', 'example_local_dependacy_1'],
package_mappings = {'PIL': 'Pillow',
'bs4': 'beautifulsoup4',
'fitz': 'PyMuPDF',
'attr': 'attrs',
'dotenv': 'python-dotenv',
'googleapiclient': 'google-api-python-client',
'sentence_transformers': 'sentence-transformers',
'flask': 'Flask',
'stdlib_list': 'stdlib-list',
'sklearn': 'scikit-learn',
'yaml': 'pyyaml'},
python_version = '3.8',
add_header=True
)
(['attrs>=22.2.0'],
['torch<=2.4.1', 'fastapi[all]', 'scikit-learn==1.5.1', 'numpy'])
rh.requirements_list
['attrs>=22.2.0']
rh.optional_requirements_list
['torch<=2.4.1', 'fastapi[all]', 'scikit-learn==1.5.1', 'numpy']
Audit dependencies
rh.check_vulnerabilities(
# optional if ran extract_requirements() before
requirements_list = None,
raise_error = True
)
No known vulnerabilities found
rh.vulnerabilities
[]
try:
rh.check_vulnerabilities(
# optional if ran extract_requirements() before
requirements_list = ['attrs>=22.2.0', 'pandas', 'hnswlib==0.7.0'],
raise_error = True
)
except Exception as e:
print(f"Error: {e}")
Found 1 known vulnerability in 1 package
Name Version ID Fix Versions
------- ------- ------------------- ------------
hnswlib 0.7.0 GHSA-xwc8-rf6m-xr86
Error: Found vulnerabilities, resolve them or ignore check to move forwards!
rh.vulnerabilities
[{'name': 'hnswlib',
'version': '0.7.0',
'id': 'GHSA-xwc8-rf6m-xr86',
'fix_versions': None}]
Save requirements to a file
rh.write_requirements_file(
# optional/required later
module_name = 'example_module',
requirements = ['### example_module.py', 'attrs>=22.2.0'],
output_path = "../tests/package_auto_assembler/other/",
prefix = "requirements_"
)
Read requirements
rh.read_requirements_file(
# required
requirements_filepath = "../tests/package_auto_assembler/other/requirements_example_module.txt"
)
['attrs>=22.2.0']
4. Preparing metadata
Since all of the necessary information for building a package needs to be contained within main component .py
file, basic metadata is provided with the use of __package_metadata__
dictionary object, defined within that .py
file. It is also used as a trigger for package building within paa pipeline.
Even though some general information shared between packages could be provided through general config, but package specific info should be provided through __package_metadata__
. It should support most text fields from setup file, but for others the following fields are available:
classifiers
: adds classifiers to the general ones from configextras_require
: a dictionary of optional package that wouldn't be installed during normal installation. The key could be used during installation and the value would be a list of dependencies.install_requires
: adds requirements to the list read from imports
* Note that providing dependencies this way does not check them through pip-audit or translate them through package mapping
Initializing MetadataHandler
mh = MetadataHandler(
# optional/required later
module_filepath = "../tests/package_auto_assembler/other/example_module.py"
)
Check if metadata is available
mh.is_metadata_available(
# optional
module_filepath = "../tests/package_auto_assembler/other/example_module.py"
)
True
Extract metadata from module
mh.get_package_metadata(
# optional
module_filepath = "../tests/package_auto_assembler/other/example_module.py"
)
{'author': 'Kyrylo Mordan',
'author_email': 'parachute.repo@gmail.com',
'version': '0.0.1',
'description': 'A mock handler for simulating a vector database.',
'keywords': ['python', 'vector database', 'similarity search']}
5. Merging local dependacies into single module
Package auto assembler creates single module packages
, meaning that once package is built all of the object are imported from a single place. The packaging tool does allow for local dependecies
which are .py
files imported from specified dependencies directory and its subfolders. Packaging structure may look like the following:
packaging repo/
└src/
├ <package names>.py
└ components
├local_dependecy.py
└subdir_1
└local_dependency_2.py
During packaging process paa merges main module with its local dependies into a single file.
Initializing LocalDependaciesHandler
ldh = LocalDependaciesHandler(
# required
main_module_filepath = "../tests/package_auto_assembler/other/example_module.py",
dependencies_dir = "../tests/package_auto_assembler/dependancies/",
# optional
save_filepath = "./combined_example_module.py"
)
Combine main module with dependacies
print(ldh.combine_modules(
# optional
main_module_filepath = "../tests/package_auto_assembler/other/example_module.py",
dependencies_dir = "../tests/package_auto_assembler/dependancies/",
add_empty_design_choices = False
)[0:1000])
"""
Mock Vector Db Handler
This class is a mock handler for simulating a vector database, designed primarily for testing and development scenarios.
It offers functionalities such as text embedding, hierarchical navigable small world (HNSW) search,
and basic data management within a simulated environment resembling a vector database.
"""
import logging
import json
import time
import attr #>=22.2.0
import sklearn
__design_choices__ = {}
@attr.s
class Shouter:
"""
A class for managing and displaying formatted log messages.
This class uses the logging module to create and manage a logger
for displaying formatted messages. It provides a method to output
various types of lines and headers, with customizable message and
line lengths.
"""
# Formatting settings
dotline_length = attr.ib(default=50)
# Logger settings
logger = attr.ib(default=None)
logger_name = attr.ib(default='Shouter')
loggerLvl = attr.ib(default=logging.DEBUG)
log
ldh.dependencies_names_list
['example_local_dependacy_2', 'example_local_dependacy_1', 'dep_from_bundle_1']
Save combined module
ldh.save_combined_modules(
# optional
combined_module = ldh.combine_modules(),
save_filepath = "./combined_example_module.py"
)
6. Prepare README
Package description is based on .ipynb
with same name as the .py
. By default it is converted to markdown as is, but there is also an option to execute it.
import logging
ldh = LongDocHandler(
# optional/required later
notebook_path = "../tests/package_auto_assembler/other/example_module.ipynb",
markdown_filepath = "../example_module.md",
timeout = 600,
kernel_name = 'python3',
# logger
loggerLvl = logging.DEBUG
)
Convert notebook to md without executing
ldh.convert_notebook_to_md(
# optional
notebook_path = "../tests/package_auto_assembler/other/example_module.ipynb",
output_path = "../example_module.md"
)
Converted ../tests/package_auto_assembler/example_module.ipynb to ../example_module.md
Convert notebook to md with executing
ldh.convert_and_execute_notebook_to_md(
# optional
notebook_path = "../tests/package_auto_assembler/other/example_module.ipynb",
output_path = "../example_module.md",
timeout = 600,
kernel_name = 'python3'
)
Converted and executed ../tests/package_auto_assembler/example_module.ipynb to ../example_module.md
Return long description
long_description = ldh.return_long_description(
# optional
markdown_filepath = "../example_module.md"
)
7. Assembling setup directory
Package are created following rather simple sequence of steps. At some point of the process a temporary directory is created to store the following files:
__init__.py
is a simple import from a single modulecli.py
is optional packaged cli tool<package name>.py
is a single module with all of the local dependeciesREADME.md
is a package description file based on.ipynb
filesetup.py
is a setup file for making a package
Initializing SetupDirHandler
sdh = SetupDirHandler(
# required
module_filepath = "../tests/package_auto_assembler/other/example_module.py",
# optional/ required
module_name = "example_module",
metadata = {'author': 'Kyrylo Mordan',
'version': '0.0.1',
'description': 'Example module.',
'long_description' : long_description,
'keywords': ['python']},
license_path = "../LICENSE",
requirements = ['attrs>=22.2.0'],
classifiers = ['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering'],
setup_directory = "./example_setup_dir"
)
Create empty setup dir
sdh.flush_n_make_setup_dir(
# optional
setup_directory = "./example_setup_dir"
)
Copy module to setup dir
sdh.copy_module_to_setup_dir(
# optional
module_filepath = "./combined_example_module.py",
setup_directory = "./example_setup_dir"
)
Copy license to setup dir
sdh.copy_module_to_setup_dir(
# optional
license_path = "../LICENSE",
setup_directory = "./example_setup_dir"
)
Create init file
sdh.create_init_file(
# optional
module_name = "example_module",
setup_directory = "./example_setup_dir"
)
Create setup file
sdh.write_setup_file(
# optional
module_name = "example_module",
metadata = {'author': 'Kyrylo Mordan',
'version': '0.0.1',
'description': 'Example Module',
'keywords': ['python']},
requirements = ['attrs>=22.2.0'],
classifiers = ['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering'],
setup_directory = "./example_setup_dir"
)
8. Creating release notes from commit messages
Package versioning could be enhanced with release notes. Since the tool is mainly meant for ci/cd, it takes advantage of commit messages to construct a release note for every version.
Commit history is analysed from the last merge, if nothiong found then the next and the next, until at least one of [<package name>]
labels are found within commit messages. They are bundled together to for a note, where each commit message or messages deliminated with ;
are turned in a list element. Previos notes are used to establish which part of commit history to use as a starting point.
Commit messages could also be used to increment version by something other then a default patch.
[<package name>][..+]
increments patch (default behavior)[<package name>][.+.]
increments minor[<package name>][+..]
increments major[<package name>][0.1.2]
forces specific version0.1.2
* First release within new packaging repo may struggle to extract release note since commit messages are only analysed from merges in the commit history.
rnh = ReleaseNotesHandler(
# path to existing or new release notes file
filepath = '../tests/package_auto_assembler/other/release_notes.md',
# name of label in commit message [example_module] for filter
label_name = 'example_module',
# new version to be used in release notes
version = '0.0.1'
)
No relevant commit messages found!
..trying depth 2 !
No relevant commit messages found!
No messages to clean were provided
- overwritting commit messages from example
# commit messages from last merge
rnh.commit_messages
['fixing paa tests',
'fixing paa tests',
'fixing paa tests',
'[package_auto_assembler] increasing default max search depth for commit history to 5',
'fixing mocker-db release notes',
'Update package version tracking files',
'Update README',
'Update requirements']
example_commit_messages = [
'[example_module] usage example for initial release notes; bugfixes for RNH',
'[BUGFIX] missing parameterframe usage example and reduntant png file',
'[example_module][0.1.2] initial release notes handler',
'Update README',
'Update requirements'
]
rnh.commit_messages = example_commit_messages
- internal methods that run on intialiazation of ReleaseNotesHandler
# get messages relevant only for label
rnh._filter_commit_messages_by_package()
print("Example filtered_messaged:")
print(rnh.filtered_messages)
# clean messages
rnh._clean_and_split_commit_messages()
print("Example processed_messages:")
print(rnh.processed_messages)
Example filtered_messaged:
['[example_module] usage example for initial release notes; bugfixes for RNH', '[example_module][0.1.2] initial release notes handler']
Example processed_messages:
['usage example for initial release notes', 'bugfixes for RNH', 'initial release notes handler']
- get version update from relevant messages
version_update = rnh.extract_latest_version()
print(f"Example version_update: {version_update}")
Example version_update: 0.1.2
- get latest version from relevant release notes
latest_version = rnh.extract_latest_version()
print(f"Example latest_version: {latest_version}")
Example latest_version: 0.1.2
- augment existing release note with new entries or create new
# augment existing release note with new entries or create new
rnh.create_release_note_entry(
# optional
existing_contents=rnh.existing_contents,
version=rnh.version,
new_messages=rnh.processed_messages
)
print("Example processed_note_entries:")
print(rnh.processed_note_entries)
Example processed_note_entries:
['# Release notes\n', '\n', '### 0.1.2\n', '\n', ' - usage example for initial release notes\n', '\n', ' - bugfixes for RNH\n', '\n', ' - initial release notes handler\n', '\n', '### 0.0.1\n', '\n', ' - initial version of example_module\n']
- saving updated relese notes
rnh.existing_contents
['# Release notes\n',
'\n',
'### 0.1.2\n',
'\n',
' - usage example for initial release notes\n',
' - bugfixes for RNH\n',
' - initial release notes handler\n',
'### 0.1.2\n',
'\n',
' - usage example for initial release notes\n',
'\n',
' - bugfixes for RNH\n',
'\n',
' - initial release notes handler\n',
'\n',
'### 0.0.1\n',
'\n',
' - initial version of example_module\n']
rnh.save_release_notes()
# updated content
rnh.get_release_notes_content()
['# Release notes\n',
'\n',
'### 0.1.2\n',
'\n',
' - usage example for initial release notes\n',
'\n',
' - bugfixes for RNH\n',
'\n',
' - initial release notes handler\n',
'\n',
'### 0.0.1\n',
'\n',
' - initial version of example_module\n']
9. Analysing package dependencies
Extracting info from installed dependencies can provide important insight into inner workings of a package and help avoid some of the licenses.
Licenses are extracted from package metadata and normalized for analysis. Missing labels are marked with -
and not recognized licenses with unknown
.
Information about unrecognized license labels could be provided through package_licenses json file that contains install package name and corresponding license label.
da = DependenciesAnalyser(
# optional
package_name = 'mocker-db',
package_licenses_filepath = '../tests/package_auto_assembler/other/package_licenses.json',
allowed_licenses = ['mit', 'apache-2.0', 'lgpl-3.0', 'bsd-3-clause', 'bsd-2-clause', '-', 'mpl-2.0']
)
Finding installed packages with a list of tags
da.filter_packages_by_tags(tags=['aa-paa-tool'])
[('comparisonframe', '0.0.0'),
('mocker-db', '0.0.1'),
('package-auto-assembler', '0.0.0'),
('proompter', '0.0.0')]
Extracting some metadata from the installed package
package_metadata = da.get_package_metadata(
package_name = 'mocker-db'
)
package_metadata
{'keywords': ['aa-paa-tool'],
'version': '0.0.1',
'author': 'Kyrylo Mordan',
'author_email': 'parachute.repo@gmail.com',
'classifiers': ['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering',
'PAA-Version :: 0.4.3',
'PAA-CLI :: False'],
'paa_version': '0.4.3',
'paa_cli': 'False',
'license_label': 'MIT'}
Extracting package requirements
package_requirements = da.get_package_requirements(
package_name = 'mocker-db'
)
package_requirements
['requests',
'attrs >=22.2.0',
'httpx',
'hnswlib ==0.8.0',
'gridlooper ==0.0.1',
'dill ==0.3.7',
'numpy ==1.26.0',
"sentence-transformers ; extra == 'sentence_transformers'"]
Extracting tree of dependencies
extracted_dependencies_tree = da.extract_dependencies_tree(
package_name = 'mocker-db'
)
extracted_dependencies_tree
{'requests': {'charset-normalizer': [],
'idna': [],
'urllib3': [],
'certifi': []},
'attrs': {'importlib-metadata': {'zipp': [], 'typing-extensions': []}},
'httpx': {'anyio': {'idna': [],
'sniffio': [],
'exceptiongroup': [],
'typing-extensions': []},
'certifi': [],
'httpcore': {'certifi': [], 'h11': {'typing-extensions': []}},
'idna': [],
'sniffio': []},
'hnswlib': {'numpy': []},
'gridlooper': {'dill': [],
'attrs': {'importlib-metadata': {'zipp': [], 'typing-extensions': []}},
'tqdm': {'colorama': []}},
'dill': [],
'numpy': []}
Addding license labels to tree of dependencies
extracted_dependencies_tree_license = da.add_license_labels_to_dep_tree(
dependencies_tree = extracted_dependencies_tree
)
extracted_dependencies_tree_license
{'requests': 'apache-2.0',
'requests.charset-normalizer': '-',
'requests.idna': '-',
'requests.urllib3': '-',
'requests.certifi': 'mpl-2.0',
'attrs': '-',
'attrs.importlib-metadata': '-',
'attrs.importlib-metadata.zipp': '-',
'attrs.importlib-metadata.typing-extensions': '-',
'httpx': '-',
'httpx.anyio': 'mit',
'httpx.anyio.idna': '-',
'httpx.anyio.sniffio': '-',
'httpx.anyio.exceptiongroup': '-',
'httpx.anyio.typing-extensions': '-',
'httpx.certifi': 'mpl-2.0',
'httpx.httpcore': '-',
'httpx.httpcore.certifi': 'mpl-2.0',
'httpx.httpcore.h11': 'mit',
'httpx.httpcore.h11.typing-extensions': '-',
'httpx.idna': '-',
'httpx.sniffio': '-',
'hnswlib': '-',
'hnswlib.numpy': 'bsd-3-clause',
'gridlooper': '-',
'gridlooper.dill': 'bsd-3-clause',
'gridlooper.attrs': '-',
'gridlooper.attrs.importlib-metadata': '-',
'gridlooper.attrs.importlib-metadata.zipp': '-',
'gridlooper.attrs.importlib-metadata.typing-extensions': '-',
'gridlooper.tqdm': '-',
'gridlooper.tqdm.colorama': '-',
'dill': 'bsd-3-clause',
'numpy': 'bsd-3-clause'}
Printing extracted tree of dependencies
da.print_flattened_tree(extracted_dependencies_tree_license)
└── requests : apache-2.0
├── charset-normalizer : -
├── idna : -
├── urllib3 : -
└── certifi : mpl-2.0
└── attrs : -
└── importlib-metadata : -
├── zipp : -
└── typing-extensions : -
└── httpx : -
├── anyio : mit
├── idna : -
├── sniffio : -
├── exceptiongroup : -
└── typing-extensions : -
├── certifi : mpl-2.0
├── httpcore : -
├── certifi : mpl-2.0
└── h11 : mit
└── typing-extensions : -
├── idna : -
└── sniffio : -
└── hnswlib : -
└── numpy : bsd-3-clause
└── gridlooper : -
├── dill : bsd-3-clause
├── attrs : -
└── importlib-metadata : -
├── zipp : -
└── typing-extensions : -
└── tqdm : -
└── colorama : -
└── dill : bsd-3-clause
└── numpy : bsd-3-clause
Filtering for unexpected licenses in tree of dependencies
allowed_licenses = ['mit', 'apache-2.0', 'lgpl-3.0', 'mpl-2.0', '-']
da.find_unexpected_licenses_in_deps_tree(
tree_dep_license = extracted_dependencies_tree_license,
# optional
allowed_licenses = allowed_licenses,
raise_error = True
)
{'hnswlib': '', 'gridlooper': ''}
└── dill : bsd-3-clause
└── numpy : bsd-3-clause
└── hnswlib :
└── numpy : bsd-3-clause
└── gridlooper :
└── dill : bsd-3-clause
---------------------------------------------------------------------------
Exception Traceback (most recent call last)
Cell In[9], line 3
1 allowed_licenses = ['mit', 'apache-2.0', 'lgpl-3.0', 'mpl-2.0', '-']
----> 3 da.find_unexpected_licenses_in_deps_tree(
4 tree_dep_license = extracted_dependencies_tree_license,
5 # optional
6 allowed_licenses = allowed_licenses,
7 raise_error = True
8 )
File ~/miniforge3/envs/testenv/lib/python3.10/site-packages/package_auto_assembler/package_auto_assembler.py:2670, in DependenciesAnalyser.find_unexpected_licenses_in_deps_tree(self, tree_dep_license, allowed_licenses, raise_error)
2668 if raise_error and out != {}:
2669 self.print_flattened_tree(flattened_dict = out)
-> 2670 raise Exception("Found unexpected licenses!")
2671 else:
2672 self.logger.info("No unexpected licenses found")
Exception: Found unexpected licenses!
10. Adding cli interfaces
The tool allows to make a package with optional cli interfaces. These could be sometimes preferable when a package contains a standalone tool that would be called from script anyway.
All of the cli logic would need to be included within a .py
file which should be stored within cli_dir
provided in .paa.config
.
Dependencies from these files are extracted in the similar manner to the main module.
Tools from main .py
file could still be imported like the following:
from package_name.package_name import ToBeImported
The code is wired in setup.py
via the following automatically assuming that appropriate file with the same name as the package exists within cli_dir
location.
...,
entry_points = {'console_scripts': [
'<package_alias> = package_name.cli:cli']} ,
...
Alias for name could be provided via the following piece of code, defined after imports, otherwise package name would be used.
__cli_metadata__ = {
"name" : <package_alias>
}
Package-auto-assembler tool itself uses click
dependency to build that file, use its cli definition as example.
11. Adding routes and running FastAPI application
The tool allows to make a package with optional routes for FastAPI application and run them. Each packages can have one routes file where its logic should be defined. Package-auto-assembler itself can combine multiple routes from packages and filepaths into one application.
A .py
file with the same name of the package should be stored within api_routes_dir
provided in .paa.config
.
Dependencies from these files are extracted in the similar manner to the main module.
Tools from main .py
file could still be imported like the following:
from package_name.package_name import ToBeImported
Api description, middleware and run parameters could be provided via optional yml
file, which for example would look like:
DESCRIPTION : {
'version' : 0.0.0
}
MIDDLEWARE : {
origin : ['*']
}
RUN : {
host : 0.0.0.0
}
where DESCRIPTION contains parameters for FastAPI
, MIDDLEWARE for CORSMiddleware
and RUN for uvicorn.run
12. Making a package
Main wrapper for the package integrates described above components into a class that could be used to build package building pipelines within python scripts.
To simplify usage cli interface is recomended instead.
Initializing PackageAutoAssembler
paa = PackageAutoAssembler(
# required
module_name = "example_module",
module_filepath = "../tests/package_auto_assembler/other/example_module.py",
# optional
mapping_filepath = "../env_spec/package_mapping.json",
licenses_filepath = "../tests/package_auto_assembler/other/package_licenses.json",
allowed_licenses = ['mit', 'apache-2.0', 'lgpl-3.0', 'mpl-2.0', '-'],
dependencies_dir = "../tests/package_auto_assembler/dependancies/",
example_notebook_path = "./mock_vector_database.ipynb",
versions_filepath = '../tests/package_auto_assembler/other/lsts_package_versions.yml',
log_filepath = '../tests/package_auto_assembler/other/version_logs.csv',
setup_directory = "./example_module",
release_notes_filepath = "../tests/package_auto_assembler/other/release_notes.md",
license_path = "../LICENSE",
license_label = "mit",
classifiers = ['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering'],
requirements_list = [],
execute_readme_notebook = True,
python_version = "3.8",
version_increment_type = "patch",
default_version = "0.0.1",
check_vulnerabilities = True,
check_dependencies_licenses = False,
add_requirements_header = True
)
Add metadata from module
paa.add_metadata_from_module(
# optional
module_filepath = "../tests/package_auto_assembler/other/example_module.py"
)
Adding metadata ...
Add or update version
paa.add_or_update_version(
# overwrites auto mode (not suggested)
version_increment_type = "patch",
version = "1.2.6",
# optional
module_name = "example_module",
versions_filepath = '../tests/package_auto_assembler/lsts_package_versions.yml',
log_filepath = '../tests/package_auto_assembler/version_logs.csv'
)
Incrementing version ...
No relevant commit messages found!
..trying depth 2 !
No relevant commit messages found!
..trying depth 3 !
No relevant commit messages found!
..trying depth 4 !
No relevant commit messages found!
..trying depth 5 !
No relevant commit messages found!
No messages to clean were provided
Add release notes from commit messages
paa.add_or_update_release_notes(
# optional
filepath="../tests/package_auto_assembler/release_notes.md",
version=paa.metadata['version']
)
Updating release notes ...
Prepare setup directory
paa.prep_setup_dir()
Preparing setup directory ...
Merge local dependacies
paa.merge_local_dependacies(
# optional
main_module_filepath = "../tests/package_auto_assembler/other/example_module.py",
dependencies_dir= "../tests/package_auto_assembler/dependancies/",
save_filepath = "./example_module/example_module.py"
)
Merging ../tests/package_auto_assembler/other/example_module.py with dependecies from ../tests/package_auto_assembler/dependancies/ into ./example_module/example_module.py
Add requirements from module
paa.add_requirements_from_module(
# optional
module_filepath = "../tests/package_auto_assembler/other/example_module.py",
import_mappings = {'PIL': 'Pillow',
'bs4': 'beautifulsoup4',
'fitz': 'PyMuPDF',
'attr': 'attrs',
'dotenv': 'python-dotenv',
'googleapiclient': 'google-api-python-client',
'sentence_transformers': 'sentence-transformers',
'flask': 'Flask',
'stdlib_list': 'stdlib-list',
'sklearn': 'scikit-learn',
'yaml': 'pyyaml',
'git' : 'gitpython'}
)
Adding requirements from ../tests/package_auto_assembler/other/example_module.py
No known vulnerabilities found
paa.requirements_list
['### example_module.py', 'attrs>=22.2.0']
Make README out of example notebook
paa.add_readme(
# optional
example_notebook_path = "../tests/package_auto_assembler/other/example_module.ipynb",
output_path = "./example_module/README.md",
execute_notebook=False,
)
Adding README from ../tests/package_auto_assembler/other/example_module.ipynb to ./example_module/README.md
Prepare setup file
paa.prep_setup_file(
# optional
metadata = {'author': 'Kyrylo Mordan',
'version': '0.0.1',
'description': 'Example module',
'keywords': ['python'],
'license' : 'mit'},
requirements = ['### example_module.py',
'attrs>=22.2.0'],
classifiers = ['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering'],
cli_module_filepath = "../tests/package_auto_assembler/other/cli.py"
)
Preparing setup file for example-module package ...
Make package
paa.make_package(
# optional
setup_directory = "./example_module"
)
Making package from ./example_module ...
CompletedProcess(args=['python', './example_module/setup.py', 'sdist', 'bdist_wheel'], returncode=0, stdout="running sdist\nrunning egg_info\nwriting example_module.egg-info/PKG-INFO\nwriting dependency_links to example_module.egg-info/dependency_links.txt\nwriting entry points to example_module.egg-info/entry_points.txt\nwriting requirements to example_module.egg-info/requires.txt\nwriting top-level names to example_module.egg-info/top_level.txt\nreading manifest file 'example_module.egg-info/SOURCES.txt'\nwriting manifest file 'example_module.egg-info/SOURCES.txt'\nrunning check\ncreating example_module-0.0.0\ncreating example_module-0.0.0/example_module\ncreating example_module-0.0.0/example_module.egg-info\ncopying files to example_module-0.0.0...\ncopying example_module/__init__.py -> example_module-0.0.0/example_module\ncopying example_module/cli.py -> example_module-0.0.0/example_module\ncopying example_module/example_module.py -> example_module-0.0.0/example_module\ncopying example_module/setup.py -> example_module-0.0.0/example_module\ncopying example_module.egg-info/PKG-INFO -> example_module-0.0.0/example_module.egg-info\ncopying example_module.egg-info/SOURCES.txt -> example_module-0.0.0/example_module.egg-info\ncopying example_module.egg-info/dependency_links.txt -> example_module-0.0.0/example_module.egg-info\ncopying example_module.egg-info/entry_points.txt -> example_module-0.0.0/example_module.egg-info\ncopying example_module.egg-info/requires.txt -> example_module-0.0.0/example_module.egg-info\ncopying example_module.egg-info/top_level.txt -> example_module-0.0.0/example_module.egg-info\ncopying example_module.egg-info/SOURCES.txt -> example_module-0.0.0/example_module.egg-info\nWriting example_module-0.0.0/setup.cfg\nCreating tar archive\nremoving 'example_module-0.0.0' (and everything under it)\nrunning bdist_wheel\nrunning build\nrunning build_py\ncopying example_module/example_module.py -> build/lib/example_module\ncopying example_module/__init__.py -> build/lib/example_module\ncopying example_module/setup.py -> build/lib/example_module\ncopying example_module/cli.py -> build/lib/example_module\ninstalling to build/bdist.linux-x86_64/wheel\nrunning install\nrunning install_lib\ncreating build/bdist.linux-x86_64/wheel\ncreating build/bdist.linux-x86_64/wheel/example_module\ncopying build/lib/example_module/example_module.py -> build/bdist.linux-x86_64/wheel/example_module\ncopying build/lib/example_module/__init__.py -> build/bdist.linux-x86_64/wheel/example_module\ncopying build/lib/example_module/setup.py -> build/bdist.linux-x86_64/wheel/example_module\ncopying build/lib/example_module/cli.py -> build/bdist.linux-x86_64/wheel/example_module\nrunning install_egg_info\nCopying example_module.egg-info to build/bdist.linux-x86_64/wheel/example_module-0.0.0-py3.10.egg-info\nrunning install_scripts\ncreating build/bdist.linux-x86_64/wheel/example_module-0.0.0.dist-info/WHEEL\ncreating 'dist/example_module-0.0.0-py3-none-any.whl' and adding 'build/bdist.linux-x86_64/wheel' to it\nadding 'example_module/__init__.py'\nadding 'example_module/cli.py'\nadding 'example_module/example_module.py'\nadding 'example_module/setup.py'\nadding 'example_module-0.0.0.dist-info/METADATA'\nadding 'example_module-0.0.0.dist-info/WHEEL'\nadding 'example_module-0.0.0.dist-info/entry_points.txt'\nadding 'example_module-0.0.0.dist-info/top_level.txt'\nadding 'example_module-0.0.0.dist-info/RECORD'\nremoving build/bdist.linux-x86_64/wheel\n", stderr='warning: sdist: standard file not found: should have one of README, README.rst, README.txt, README.md\n\n/home/kyriosskia/miniconda3/envs/testenv/lib/python3.10/site-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated.\n!!\n\n ********************************************************************************\n Please avoid running ``setup.py`` directly.\n Instead, use pypa/build, pypa/installer or other\n standards-based tools.\n\n See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details.\n ********************************************************************************\n\n!!\n self.initialize_options()\n')
13. Making simple MkDocs site
Package documentation can be presented in a form of mkdocs static site, which could be either served or deployed to something like github packages.
Main module docstring is used as intro package that contains something like optional pypi and license badges. Package description and realease notes are turned into separate tabs. Png with diagrams for example could be provided and displayed as their own separate tabs as well.
The one for this package can be seen here
It can be packaged with the package and be displayed in webrowser like documentation for api via {package_name}\docs
when using included api handling capabilities.
- preparing inputs
package_name = "example_module"
module_content = LongDocHandler().read_module_content(filepath=f"../tests/package_auto_assembler/{package_name}.py")
docstring = LongDocHandler().extract_module_docstring(module_content=module_content)
pypi_link = LongDocHandler().get_pypi_badge(module_name=package_name)
docs_file_paths = {
"../example_module.md" : "usage-examples.md",
'../tests/package_auto_assembler/release_notes.md' : 'release_notes.md'
}
mdh = MkDocsHandler(
# required
## name of the package to be displayed
package_name = package_name,
## dictionary of markdown files, with path as keys
docs_file_paths = docs_file_paths,
# optional
## module docstring to be displayed in the index
module_docstring = docstring,
## pypi badge to be displayed in the index
pypi_badge = pypi_link,
## license badge to be displayed in the index
license_badge="[![License](https://img.shields.io/github/license/Kiril-Mordan/reusables)](https://github.com/Kiril-Mordan/reusables/blob/main/LICENSE)",
## name of the project directory
project_name = "temp_project")
- preparing site
mdh.create_mkdocs_dir()
mdh.move_files_to_docs()
mdh.generate_markdown_for_images()
mdh.create_index()
mdh.create_mkdocs_yml()
mdh.build_mkdocs_site()
Created new MkDocs dir: temp_project
Copied ../example_module.md to temp_project/docs/usage-examples.md
Copied ../tests/package_auto_assembler/release_notes.md to temp_project/docs/release_notes.md
index.md has been created with site_name: example-module
mkdocs.yml has been created with site_name: Example module
Custom CSS created at temp_project/docs/css/extra.css
INFO - Cleaning site directory
INFO - Building documentation to directory: /home/kyriosskia/Documents/nlp/reusables/example_notebooks/temp_project/site
INFO - Documentation built in 0.12 seconds
- test runing site
mdh.serve_mkdocs_site()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for package_auto_assembler-0.5.7.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 02298125d53ddb03e97f8b33815b5c3b687bed4cce3680d2dca7a23f97b14d85 |
|
MD5 | 8ba66cb5ae9842affe503064559969dd |
|
BLAKE2b-256 | f83264c9011496ebb232acd9e28e86cd0bbc45724f2c9559d1a1897445a9781d |
Hashes for package_auto_assembler-0.5.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 35aa0789cd2712f4e2dd2ca3674eea395fc2c123a41b0452784007bbc9373920 |
|
MD5 | 100558012824ada6ad75d950f3d8016e |
|
BLAKE2b-256 | 69935bf38125de1e9e70d4ab13ca400a87f9ba73f5411a318c3abf35524a6ef1 |