Skip to content

Commit ce59664

Browse files
committed
PyPI リリース用に調整
1 parent 81baabe commit ce59664

File tree

7 files changed

+27
-17
lines changed

7 files changed

+27
-17
lines changed

README.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,25 @@
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
```

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools>=42"]
3+
build-backend = "setuptools.build_meta"

requirements/base.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

requirements/dev.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

setup.cfg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = attr: takanori_cli.__version__
44
description = Takanori commands for my automation tool.
55
long_description = file: README.md
66
long_description_content_type = text/markdown
7+
url = https://github.com/takavfx/takanori-cli
78
author = Takanori Kishikawa
89
author_email = auratus.lemma@gmail.com
910
classifiers =
@@ -15,6 +16,9 @@ packages = find:
1516
package_dir = = src
1617
include_package_data = True
1718
python_requires = >= 3.7
19+
install_requires =
20+
click
21+
cookiecutter
1822

1923
[options.packages.find]
2024
where = src

setup.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
11
from 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()

src/takanori_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "v2022.6.13"
1+
__version__ = "v1.0.0"

0 commit comments

Comments
 (0)