diff options
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..828c630 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,21 @@ +[metadata] +name = monitor_menu +version = 0.1 +author = Olivier Gayot +author_email = olivier.gayot@sigexec.com + +description = TUI interface to manage monitor profiles +url = https://git.sigexec.com/cgit.cgi/monitor_menu.git +classifiers = + Programming Language :: Python :: 3 + License :: BSD-3 + Operating System :: POSIX :: Linux + +[options] +packages = find: +python_requires = >=3.10 + +[options.entry_points] +console_scripts = + monitor-menu = monitor_menu.__main__:main + |