]> git.scottworley.com Git - nix-env-apps/commitdiff
Release 1.0.0 v1.0.0
authorScott Worley <scottworley@scottworley.com>
Sat, 13 Sep 2025 18:45:02 +0000 (11:45 -0700)
committerScott Worley <scottworley@scottworley.com>
Sat, 13 Sep 2025 18:45:02 +0000 (11:45 -0700)
Changelog [new file with mode: 0644]
default.nix
setup.py

diff --git a/Changelog b/Changelog
new file mode 100644 (file)
index 0000000..1e421ed
--- /dev/null
+++ b/Changelog
@@ -0,0 +1,5 @@
+## [Unreleased]
+
+
+## [1.0.0] - 2025-09-13
+Initial version
index a0d1166fa19352c915a8fa45696c32c349b50767..ad68b48de9755dd8a7535f4c845eb17a94ff8e19 100644 (file)
@@ -4,7 +4,7 @@ pkgs.python3Packages.callPackage ({ autopep8, buildPythonPackage
   }:
   buildPythonPackage rec {
     pname = "apps";
-    version = "1.0";
+    version = "1.0.0";
 
     src = lib.cleanSource ./.;
 
index 63dd5f7d3e572d94a19a389370e5f04191edc717..b63a7e9bc6a6247c2e2fd7c6999c530d1a37f2b0 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,10 +2,15 @@ from setuptools import setup
 
 setup(
     name='apps',
+    version='1.0.0',
+    description='A simple GUI for managing declarative nix-env user environments',
+    author='Scott Worley',
+    author_email='scottworley@scottworley.com',
+    url='https://git.scottworley.com/nix-env-apps',
+    license='GPL-3.0',
     py_modules=['apps'],
     entry_points={
         'console_scripts': [
             'apps = apps:main',
         ],
-    }
-)
+    })