-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
53 lines (46 loc) · 1.1 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
53
[metadata]
name = sonos-barcode
keywords = sonos, barcode, cd
version = attr: sonos_barcode.__version__
long_description = file: README.md
long_description_content_type = text/x-markdown
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Operating System :: OS Independent
Topic :: Software Development :: Libraries :: Python Modules
[options]
python_requires = >=3.9
packages = find:
package_dir =
=src
install_requires =
fastapi
fastapi-socketio
hidapi
mysql-connector-python==8.0.29
pydantic[dotenv]
soco
SQLAlchemy
uvicorn
uvicorn[standard]
[options.packages.find]
where=src
[options.package_data]
sonos_barcode:
dist/*
dist/*/*.*
dist/*/*/*.*
[options.entry_points]
console_scripts =
sonos_barcode = sonos_barcode.serve:run
[bdist_wheel]
universal = true
[aliases]
test = pytest
[flake8]
ignore = E501,W503,E203,W504,E251,E262,E265,E266,W291,W293