]> git.scottworley.com Git - git-cache/commitdiff
Specify license
authorScott Worley <scottworley@scottworley.com>
Thu, 24 Nov 2022 02:06:34 +0000 (18:06 -0800)
committerScott Worley <scottworley@scottworley.com>
Thu, 24 Nov 2022 02:06:34 +0000 (18:06 -0800)
Changelog
default.nix
git_cache.py
setup.py
test_git_cache.py

index 045293a13cb8ad2784833de0e04d28e79d1599e0..1336a0925837696eaf56351035b1cd186dfa6c0a 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,6 @@
 ## [Unreleased]
+### Changed
+- Specify license
 
 
 ## [1.4.2] - 2022-11-23
index 265b45096492e20dd95327f8722ad74ebe32e6b9..a161d41c6c6dd5debbdfea977f105caa4b459a05 100644 (file)
@@ -10,4 +10,10 @@ pkgs.python3Packages.callPackage
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
     doCheck = true;
     checkPhase = "./test.sh";
+    meta = {
+      description = "Cache git content locally";
+      homepage = "https://git.scottworley.com/git-cache";
+      license = pkgs.lib.licenses.gpl3;
+      maintainers = with pkgs.lib.maintainers; [ chkno ];
+    };
   }) { }
index c7bcdd215e2cf52bda04483ecb267d0b72ade596..a34c3291b3e6f359e4430a3e9d5720f6923487ce 100644 (file)
@@ -1,3 +1,10 @@
+# git-cache: Cache git content locally
+#
+# This program is free software: you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by the
+# Free Software Foundation, version 3.
+
+
 # It would be nice if we could share the nix git cache, but as of the
 # time of writing it is transitioning from gitv2 (deprecated) to gitv3
 # (not ready yet), and trying to straddle them both is too far into nix
index e0ad3b1d76ed8d6e78804ae37618efdc99780c6d..434f4a7731e0cfcea6c3567ff46d64394b5a2005 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,6 +3,11 @@ from setuptools import setup
 setup(
     name="git_cache",
     version="1.4.2",
-    entry_points={'console_scripts': ['git-cache = git_cache:_main']},
+    description="Cache git content locally",
+    author="Scott Worley",
+    author_email="scottworley@scottworley.com",
+    url="https://git.scottworley.com/git-cache",
     py_modules=['git_cache'],
+    license="GPL-3.0",
+    entry_points={'console_scripts': ['git-cache = git_cache:_main']},
 )
index 529ac94334e97ad9197e6e073f590689f25e7994..1845c010af8e33434e4218fa5a9fc33ff972b8d4 100644 (file)
@@ -1,3 +1,10 @@
+# git-cache: Cache git content locally
+#
+# This program is free software: you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by the
+# Free Software Foundation, version 3.
+
+
 import os.path
 import tempfile
 import shutil