Skip to content

Commit

Permalink
PyPI リリース用に調整
Browse files Browse the repository at this point in the history
  • Loading branch information
takavfx committed Jun 12, 2022
1 parent 81baabe commit ce59664
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 17 deletions.
20 changes: 18 additions & 2 deletions README.md
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>
```
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
2 changes: 0 additions & 2 deletions requirements/base.txt

This file was deleted.

3 changes: 0 additions & 3 deletions requirements/dev.txt

This file was deleted.

4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand All @@ -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
Expand Down
10 changes: 1 addition & 9 deletions setup.py
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()
2 changes: 1 addition & 1 deletion src/takanori_cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "v2022.6.13"
__version__ = "v1.0.0"

0 comments on commit ce59664

Please sign in to comment.