-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from DanCardin/dc/update-docs
- Loading branch information
Showing
6 changed files
with
138 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "sqlalchemy-model-factory" | ||
version = "0.4.0" | ||
version = "0.4.1" | ||
description = "A library to assist in generating models from a central location." | ||
authors = ["Dan Cardin <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
from sqlalchemy_model_factory.declarative import declarative # noqa | ||
from sqlalchemy_model_factory.registry import register_at, Registry, registry # noqa | ||
from sqlalchemy_model_factory.utils import autoincrement, fluent, for_model # noqa | ||
# flake8: noqa | ||
from sqlalchemy_model_factory.base import ModelFactory | ||
from sqlalchemy_model_factory.declarative import declarative | ||
from sqlalchemy_model_factory.registry import register_at, Registry, registry | ||
from sqlalchemy_model_factory.utils import autoincrement, fluent, for_model |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters