From: Scott Worley Date: Thu, 15 Feb 2024 07:13:10 +0000 (-0800) Subject: Release 1.0.0 X-Git-Tag: v1.0.0 X-Git-Url: http://git.scottworley.com/rfc1751/commitdiff_plain/812ca2069a573d8abf45a3835f41a8838e5052ea?ds=inline Release 1.0.0 --- diff --git a/Changelog b/Changelog index 701cd4c..bf27b83 100644 --- a/Changelog +++ b/Changelog @@ -1 +1,5 @@ ## [Unreleased] + + +## [1.0.0] - 2024-02-14 +- Initial release diff --git a/default.nix b/default.nix index 8b3e750..f1052a2 100644 --- a/default.nix +++ b/default.nix @@ -3,10 +3,16 @@ pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, mypy, autopep8, pylint, }: buildPythonPackage rec { pname = "rfc1751"; - version = "0.1.0"; + version = "1.0.0"; src = lib.cleanSource ./.; nativeCheckInputs = [ mypy ] ++ lib.optionals lint [ autopep8 pylint ]; doCheck = true; checkPhase = "./test.sh"; - meta = { license = lib.licenses.isc; }; + meta = { + description = + "Command line tool for RFC1751 (aka S/Key) numbers-as-word-lists"; + homepage = "https://git.scottworley.com/rfc1751"; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ chkno ]; + }; }) { } diff --git a/setup.py b/setup.py index 2cbac9c..02854da 100644 --- a/setup.py +++ b/setup.py @@ -2,10 +2,17 @@ from setuptools import setup setup( name='rfc1751', - py_modules=['rfc1751', 'rfc1751wordlist'], + version='1.0.0', + description='Command line tool for RFC1751 (aka S/Key) numbers-as-word-lists', + author='Scott Worley', + author_email='scottworley@scottworley.com', + url='https://git.scottworley.com/rfc1751', + license='ISC', + py_modules=[ + 'rfc1751', + 'rfc1751wordlist'], entry_points={ 'console_scripts': [ 'rfc1751 = rfc1751:main', ], - } -) + })