File tree Expand file tree Collapse file tree 7 files changed +27
-17
lines changed
Expand file tree Collapse file tree 7 files changed +27
-17
lines changed Original file line number Diff line number Diff line change 11# takanori-cli
22
3- Takanori commands for my automation tool .
3+ Takanori commands to automate daily works .
44
55# Install
66
77``` bash
8- pip install git+https://github.com/takavfx/takanori-cli.git
8+ pip install takanori-cli
9+ ```
10+
11+ # Usage
12+
13+ ## Create plugins
14+
15+ Execute commands below.
16+
17+ ``` bash
18+ taka plugin create
19+ ```
20+
21+ 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.
22+
23+ ``` bash
24+ taka plugin create --template < custom_template>
925```
Original file line number Diff line number Diff line change 1+ [build-system ]
2+ requires = [" setuptools>=42" ]
3+ build-backend = " setuptools.build_meta"
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ version = attr: takanori_cli.__version__
44description = Takanori commands for my automation tool.
55long_description = file: README.md
66long_description_content_type = text/markdown
7+ url = https://github.com/takavfx/takanori-cli
78author = Takanori Kishikawa
89author_email = auratus.lemma@gmail.com
910classifiers =
@@ -15,6 +16,9 @@ packages = find:
1516package_dir = = src
1617include_package_data = True
1718python_requires = >= 3.7
19+ install_requires =
20+ click
21+ cookiecutter
1822
1923[options.packages.find]
2024where = src
Original file line number Diff line number Diff line change 11from setuptools import setup
22
3-
4- def read_requirements (file ):
5- with open (file , encoding = 'utf-8' ) as f :
6- return f .readlines ()
7-
8-
9- setup (
10- install_requires = read_requirements ('requirements/base.txt' )
11- )
3+ setup ()
Original file line number Diff line number Diff line change 1- __version__ = "v2022.6.13 "
1+ __version__ = "v1.0.0 "
You can’t perform that action at this time.
0 commit comments