wuttapos/setup.cfg
Lance Edgar 51c1094e1c Add basic Feedback button for POS screen
this will definitely need to change, but wanted it on screen at least
2023-09-24 19:29:57 -05:00

48 lines
1.2 KiB
INI

# -*- coding: utf-8; -*-
[metadata]
name = WuttaPOS
version = attr: wuttapos.__version__
author = Lance Edgar
author_email = lance@edbob.org
url = https://rattailproject.org/
license = GNU GPL v3
description = Pythonic Point of Sale System
long_description = file: README.md
classifiers =
Development Status :: 3 - Alpha
Environment :: Win32 (MS Windows)
Environment :: X11 Applications
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Office/Business :: Financial :: Point-Of-Sale
[options]
install_requires =
flet
psycopg2
rattail[db]
packages = find:
include_package_data = True
# zip_safe = False
[options.entry_points]
console_scripts =
wuttapos = wuttapos.commands:main
rattail.config.extensions =
wuttapos = wuttapos.config:WuttaConfigExtension
wuttapos.commands =
open = wuttapos.commands:Open
serve = wuttapos.commands:Serve
status = wuttapos.commands:Status