-
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.
- Loading branch information
Showing
7 changed files
with
27 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,25 @@ | ||
# takanori-cli | ||
|
||
Takanori commands for my automation tool. | ||
Takanori commands to automate daily works. | ||
|
||
# Install | ||
|
||
```bash | ||
pip install git+https://github.com/takavfx/takanori-cli.git | ||
pip install takanori-cli | ||
``` | ||
|
||
# Usage | ||
|
||
## Create plugins | ||
|
||
Execute commands below. | ||
|
||
```bash | ||
taka plugin create | ||
``` | ||
|
||
And answer some questions to generate a pacpage from [a template](https://github.com/takavfx/takanori-cli-plugin-template). It's also available to create a pcakge from custom templates by using `-t` or `--template` options. | ||
|
||
```bash | ||
taka plugin create --template <custom_template> | ||
``` |
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,3 @@ | ||
[build-system] | ||
requires = ["setuptools>=42"] | ||
build-backend = "setuptools.build_meta" |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ version = attr: takanori_cli.__version__ | |
description = Takanori commands for my automation tool. | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://github.com/takavfx/takanori-cli | ||
author = Takanori Kishikawa | ||
author_email = [email protected] | ||
classifiers = | ||
|
@@ -15,6 +16,9 @@ packages = find: | |
package_dir = = src | ||
include_package_data = True | ||
python_requires = >= 3.7 | ||
install_requires = | ||
click | ||
cookiecutter | ||
|
||
[options.packages.find] | ||
where = src | ||
|
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,11 +1,3 @@ | ||
from setuptools import setup | ||
|
||
|
||
def read_requirements(file): | ||
with open(file, encoding='utf-8') as f: | ||
return f.readlines() | ||
|
||
|
||
setup( | ||
install_requires=read_requirements('requirements/base.txt') | ||
) | ||
setup() |
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 +1 @@ | ||
__version__ = "v2022.6.13" | ||
__version__ = "v1.0.0" |