forked from lingion/qdp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (41 loc) · 980 Bytes
/
Copy pathsetup.py
File metadata and controls
44 lines (41 loc) · 980 Bytes
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
from setuptools import find_packages, setup
pkg_name = "qdp"
requirements = [
"pathvalidate",
"requests",
"mutagen",
"beautifulsoup4",
"rich",
]
setup(
name=pkg_name,
version="114.0.1",
author="lingion",
description="Local Qobuz web player and toolkit",
url="https://github.com/lingion/qdp",
install_requires=requirements,
entry_points={
"console_scripts": [
"qdp = qdp.cli:main",
],
},
packages=find_packages(),
package_data={
"qdp": [
"web/app/*.js",
"web/app/*.html",
"web/app/*.css",
"web/app/*.svg",
"web/static/*",
"web/static/**/*",
"web/cache-assets/*",
"web/cache-assets/**/*",
],
},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
)