diff options
| author | Gregor Kleen <gkleen@yggdrasil.li> | 2022-09-13 10:29:35 +0200 |
|---|---|---|
| committer | Gregor Kleen <gkleen@yggdrasil.li> | 2022-09-13 10:29:35 +0200 |
| commit | b931543508377c0e48a6801e4ea217eb523e2b03 (patch) | |
| tree | 373c8ab46c6e78cb69654d816fadf8d6fef1fd28 /overlays/smartprom/setup.py | |
| parent | 92dab2dbad09bee9698fc0a9734140af37ca550a (diff) | |
| download | nixos-b931543508377c0e48a6801e4ea217eb523e2b03.tar nixos-b931543508377c0e48a6801e4ea217eb523e2b03.tar.gz nixos-b931543508377c0e48a6801e4ea217eb523e2b03.tar.bz2 nixos-b931543508377c0e48a6801e4ea217eb523e2b03.tar.xz nixos-b931543508377c0e48a6801e4ea217eb523e2b03.zip | |
...
Diffstat (limited to 'overlays/smartprom/setup.py')
| -rw-r--r-- | overlays/smartprom/setup.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/overlays/smartprom/setup.py b/overlays/smartprom/setup.py new file mode 100644 index 00000000..c30fc557 --- /dev/null +++ b/overlays/smartprom/setup.py | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | from setuptools import setup | ||
| 2 | |||
| 3 | setup(name='@pname@', | ||
| 4 | version='@version@', | ||
| 5 | packages=['@pname@'], | ||
| 6 | entry_points={ | ||
| 7 | 'console_scripts': [ | ||
| 8 | '@pname@=@pname@.__main__:main', | ||
| 9 | ], | ||
| 10 | } | ||
| 11 | ) | ||
