-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
52 lines (47 loc) · 1.04 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[metadata]
name = quicktill
version = 23.13
description = Quick till and stock control library
long_description = file: README.md
long_description_content_type = text/markdown
author = Stephen Early
author_email = [email protected]
url = https://github.com/sde1000/quicktill
[options]
packages =
quicktill
quicktill.tillweb
quicktill.tillweb.migrations
install_requires =
psycopg2 ~= 2.8
reportlab
httplib2
sqlalchemy ~= 1.3
qrcode
tomli
requests
requests-oauthlib
pycups
python-dateutil
cryptography
pillow
python_requires = >=3.8
[options.extras_require]
tillweb = odfpy
[options.entry_points]
console_scripts =
runtill = quicktill.till:main
[options.package_data]
quicktill.tillweb =
static/tillweb/*.js
static/tillweb/*.css
static/tillweb/*/*.js
static/tillweb/*/*.css
static/tillweb/*/*/*.js
static/tillweb/*/*/*.css
templates/tillweb/*.html
templates/tillweb/*.ajax
[flake8]
ignore = E711, E712, E741, W503, E402
max-line-length = 80
exclude = */migrations/