mirror of
https://github.com/drewcassidy/yaclog.git
synced 2024-09-01 14:58:58 +00:00
Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
9b0ae90ee2 | |||
15e4d691f5 | |||
9a7e3da60d | |||
94f692e6c5 | |||
c7583388c6 | |||
fe9aa937d2 | |||
caa4560d6d | |||
03841ad07e | |||
aa2390312a | |||
07d76cdc09 | |||
8c79e158c8 | |||
21defeffce |
8
.github/dependabot.yml
vendored
Normal file
8
.github/dependabot.yml
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# Set update schedule for GitHub Actions
|
||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
- package-ecosystem: "github-actions"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
# Check for updates to GitHub Actions every weekday
|
||||||
|
interval: "daily"
|
12
.github/workflows/python-publish.yml
vendored
12
.github/workflows/python-publish.yml
vendored
@ -9,14 +9,14 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [ 3.8, 3.9 ]
|
python-version: [ "3.8", "3.9", "3.10" ]
|
||||||
click-version: [ click~=7.0, click~=8.0 ]
|
click-version: [ "click~=7.0", "click~=8.0" ]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up Python ${{ matrix.python-version }}
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v3.1.1
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|
||||||
@ -45,10 +45,10 @@ jobs:
|
|||||||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v3.1.1
|
||||||
with:
|
with:
|
||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
|
|
||||||
|
@ -2,6 +2,13 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file
|
All notable changes to this project will be documented in this file
|
||||||
|
|
||||||
|
## Version 1.0.4 - 2022-04-08
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed tests folder being installed as a package
|
||||||
|
|
||||||
|
|
||||||
## Version 1.0.3 - 2021-05-12
|
## Version 1.0.3 - 2021-05-12
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -1,9 +1,58 @@
|
|||||||
[build-system]
|
[build-system]
|
||||||
requires = [
|
requires = [
|
||||||
"setuptools >= 35.0.2",
|
"setuptools>=61",
|
||||||
"setuptools_scm[toml] >= 3.4",
|
"setuptools_scm>=6.2",
|
||||||
"wheel"
|
"wheel"
|
||||||
]
|
]
|
||||||
build-backend = "setuptools.build_meta"
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[tool.setuptools_scm]
|
[project]
|
||||||
|
name = "yaclog"
|
||||||
|
description = "Yet another changelog CLI tool."
|
||||||
|
readme = "README.md"
|
||||||
|
license = { file = "LICENSE.md" }
|
||||||
|
authors = [{ name = "Andrew Cassidy", email = "drewcassidy@me.com" }]
|
||||||
|
keywords = ["changelog", "commandline", "markdown"]
|
||||||
|
classifiers = [
|
||||||
|
"Development Status :: 5 - Production/Stable",
|
||||||
|
"Intended Audience :: Developers",
|
||||||
|
"License :: OSI Approved :: GNU Affero General Public License v3",
|
||||||
|
"Operating System :: OS Independent",
|
||||||
|
"Programming Language :: Python :: 3 :: Only",
|
||||||
|
"Programming Language :: Python :: 3",
|
||||||
|
"Programming Language :: Python :: 3.8",
|
||||||
|
"Programming Language :: Python :: 3.9",
|
||||||
|
"Programming Language :: Python :: 3.10",
|
||||||
|
"Topic :: Text Processing :: Markup :: Markdown",
|
||||||
|
"Topic :: Software Development :: Version Control :: Git",
|
||||||
|
"Topic :: Utilities"
|
||||||
|
]
|
||||||
|
|
||||||
|
requires-python = ">= 3.8"
|
||||||
|
dependencies = [
|
||||||
|
"Click >= 7.0",
|
||||||
|
"GitPython >= 3",
|
||||||
|
"packaging >= 20"
|
||||||
|
]
|
||||||
|
dynamic = ["version"]
|
||||||
|
|
||||||
|
[project.optional-dependencies]
|
||||||
|
docs = [
|
||||||
|
"Sphinx >= 3.5",
|
||||||
|
"sphinx-click >= 2.7",
|
||||||
|
"sphinx-rtd-theme",
|
||||||
|
"myst-parser >= 0.14",
|
||||||
|
]
|
||||||
|
|
||||||
|
[project.scripts]
|
||||||
|
yaclog = "yaclog.cli.__main__:cli"
|
||||||
|
|
||||||
|
[project.urls]
|
||||||
|
Source = "https://github.com/drewcassidy/yaclog"
|
||||||
|
Changelog = "https://github.com/drewcassidy/yaclog/blob/main/CHANGELOG.md"
|
||||||
|
Docs = "https://yaclog.readthedocs.io/"
|
||||||
|
|
||||||
|
[tool.setuptools_scm]
|
||||||
|
|
||||||
|
[tool.setuptools.packages.find]
|
||||||
|
include = ["yaclog"]
|
50
setup.cfg
50
setup.cfg
@ -1,50 +0,0 @@
|
|||||||
[metadata]
|
|
||||||
# until setuptools supports PEP621, this will have to do
|
|
||||||
name = yaclog
|
|
||||||
description = Yet another changelog CLI tool.
|
|
||||||
author = Andrew Cassidy
|
|
||||||
license = AGPLv3
|
|
||||||
license_file = LICENSE.md
|
|
||||||
long_description = file: README.md
|
|
||||||
long_description_content_type = text/markdown
|
|
||||||
|
|
||||||
keywords = changelog, commandline, markdown
|
|
||||||
classifiers =
|
|
||||||
Development Status :: 5 - Production/Stable
|
|
||||||
Intended Audience :: Developers
|
|
||||||
License :: OSI Approved :: GNU Affero General Public License v3
|
|
||||||
Operating System :: OS Independent
|
|
||||||
Programming Language :: Python :: 3 :: Only
|
|
||||||
Programming Language :: Python :: 3
|
|
||||||
Programming Language :: Python :: 3.8
|
|
||||||
Programming Language :: Python :: 3.9
|
|
||||||
Topic :: Text Processing :: Markup :: Markdown
|
|
||||||
Topic :: Software Development :: Version Control :: Git
|
|
||||||
Topic :: Utilities
|
|
||||||
|
|
||||||
project_urls =
|
|
||||||
Source = https://github.com/drewcassidy/yaclog
|
|
||||||
Changelog = https://github.com/drewcassidy/yaclog/blob/main/CHANGELOG.md
|
|
||||||
Docs = https://yaclog.readthedocs.io/
|
|
||||||
|
|
||||||
[options]
|
|
||||||
install_requires =
|
|
||||||
Click >= 7.0, < 9.0
|
|
||||||
GitPython >= 3
|
|
||||||
packaging >= 20
|
|
||||||
python_requires = >= 3.8
|
|
||||||
packages = find:
|
|
||||||
|
|
||||||
[options.extras_require]
|
|
||||||
docs =
|
|
||||||
Sphinx >= 3.5
|
|
||||||
sphinx-click >= 2.7
|
|
||||||
sphinx-rtd-theme
|
|
||||||
myst-parser >= 0.14
|
|
||||||
|
|
||||||
[options.entry_points]
|
|
||||||
console_scripts =
|
|
||||||
yaclog = yaclog.cli.__main__:cli
|
|
||||||
|
|
||||||
[options.packages.find]
|
|
||||||
exclude = tests.*
|
|
Reference in New Issue
Block a user