]> git.scottworley.com Git - rfc1751/commitdiff
Release 1.0.0 v1.0.0
authorScott Worley <scottworley@scottworley.com>
Thu, 15 Feb 2024 07:13:10 +0000 (23:13 -0800)
committerScott Worley <scottworley@scottworley.com>
Thu, 15 Feb 2024 07:13:10 +0000 (23:13 -0800)
Changelog
default.nix
setup.py

index 701cd4c90c52d004e3fc656a20c4c9ecc0b42d10..bf27b835b61753e3b9cd98fb5c1965f639607dd6 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1 +1,5 @@
 ## [Unreleased]
 ## [Unreleased]
+
+
+## [1.0.0] - 2024-02-14
+- Initial release
index 8b3e7506e93b7a87abd179a959d45a35055dd762..f1052a20e684741d92d65ab33cc83dfa3bb5fe40 100644 (file)
@@ -3,10 +3,16 @@ pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, mypy, autopep8, pylint, }:
   buildPythonPackage rec {
     pname = "rfc1751";
 ({ 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";
     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 ];
+    };
   }) { }
   }) { }
index 2cbac9ca706b433b7df7a59acf7c148baf92da15..02854dacef61ca0a951e3d15f33354fc57fcdf1d 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,10 +2,17 @@ from setuptools import setup
 
 setup(
     name='rfc1751',
 
 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',
         ],
     entry_points={
         'console_scripts': [
             'rfc1751 = rfc1751:main',
         ],
-    }
-)
+    })