Skip to content

Commit

Permalink
Merge pull request #95 from branchvincent/terminaltables3
Browse files Browse the repository at this point in the history
use terminaltables3, migrate to pyproject.toml
  • Loading branch information
OrkoHunter authored Jul 31, 2024
2 parents e6eadb9 + d80ac52 commit 9673f1f
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 47 deletions.
2 changes: 0 additions & 2 deletions MANIFEST.in

This file was deleted.

2 changes: 1 addition & 1 deletion keep/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import time
import click
import requests
from terminaltables import AsciiTable
from terminaltables3 import AsciiTable
from textwrap import wrap

from keep import about
Expand Down
24 changes: 24 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[project]
name = "keep"
version = "2.10.1"
description = "Personal shell command keeper"
readme = "README.md"
authors = [
{ name = "Himanshu Mishra", email = "himanshu.mishra.kgp@gmail.com" },
]
dependencies = ["PyGithub", "click", "requests", "terminaltables3"]
requires-python = ">=3.8"

[project.urls]
Homepage = "https://github.com/orkohunter/keep"
Downloads = "https://github.com/orkohunter/keep/archive/master.zip"

[project.scripts]
keep = "keep.cli:cli"

[tool.flit.sdist]
include = ["completions/"]

[build-system]
requires = ["flit_core>=3.4"]
build-backend = "flit_core.buildapi"
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# pip install twine wheel
rm -rf build/*
rm -rf dist/*
python setup.py sdist bdist_wheel
python -m build
twine upload dist/*
4 changes: 0 additions & 4 deletions requirements.txt

This file was deleted.

39 changes: 0 additions & 39 deletions setup.py

This file was deleted.

0 comments on commit 9673f1f

Please sign in to comment.