mirror of
https://github.com/drewcassidy/yaclog.git
synced 2024-09-01 14:58:58 +00:00
42 lines
1.2 KiB
INI
42 lines
1.2 KiB
INI
[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 :: 4 - Beta
|
|
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 Code = https://github.com/drewcassidy/yaclog
|
|
Changelog = https://github.com/drewcassidy/yaclog/blob/main/CHANGELOG.md
|
|
|
|
[options]
|
|
install_requires =
|
|
Click ~= 7.0
|
|
GitPython >= 3
|
|
packaging >= 20
|
|
python_requires = >= 3.8
|
|
packages = find:
|
|
|
|
[options.entry_points]
|
|
console_scripts =
|
|
yaclog = yaclog.cli.__main__:cli
|
|
|
|
[options.packages.find]
|
|
exclude = tests.* |