-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Paul Hallett
committed
Sep 28, 2023
1 parent
3038f5e
commit 382b81f
Showing
33 changed files
with
52 additions
and
35 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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from os.path import abspath, dirname | ||
|
||
from jinja2 import Environment, PackageLoader | ||
|
||
CLIENT_TEMPLATE_ROOT = ( | ||
dirname(dirname(abspath(__file__))) + "/clientele/client_template/" | ||
) | ||
TEMPLATES_ROOT = dirname(dirname(abspath(__file__))) + "/clientele/templates/" | ||
CONSTANTS_ROOT = dirname(dirname(abspath(__file__))) + "/clientele/" | ||
VERSION = "0.6.3" | ||
|
||
templates = Environment(loader=PackageLoader("clientele", "templates")) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,15 +1,20 @@ | ||
[tool.poetry] | ||
name = "clientele" | ||
version = "0.6.2" | ||
version = "0.6.3" | ||
description = "Generate loveable Python HTTP API Clients" | ||
authors = ["Paul Hallett <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
packages = [{include = "src"}] | ||
packages = [{include = "clientele"}] | ||
homepage = "https://phalt.github.io/clientele/" | ||
|
||
[tool.poetry.urls] | ||
changelog = "https://phalt.github.io/clientele/CHANGELOG/" | ||
documentation = "https://phalt.github.io/clientele/" | ||
issues = "https://github.com/phalt/clientele/issues" | ||
|
||
[tool.poetry.scripts] | ||
clientele = "src.cli:cli_group" | ||
clientele = "clientele.cli:cli_group" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.9" | ||
|
Empty file.
This file was deleted.
Oops, something went wrong.
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