System Gen235 @ 2026-06-19-21:07:09 by jonas@comfy-station

This commit is contained in:
2026-06-19 21:07:10 +02:00
parent 78441fb2d5
commit 9ea047ce9b
12 changed files with 211 additions and 0 deletions
@@ -0,0 +1,14 @@
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="follow_hive_nixpkgs",
version="1.0",
packages=find_packages(),
entry_points={
"console_scripts": [
"follow-hive-nixpkgs=follow_hive_nixpkgs.app:main",
],
},
)