setup   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 33
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 29
dl 0
loc 33
rs 10
c 0
b 0
f 0
1
import setuptools
2
3
with open("README.md", "r", encoding="utf-8") as file:
4
    long_description = file.read()
5
6
setuptools.setup(
7
    name = "univk_audio",
8
    version = "1.0.3",
9
    author = "Unik",
10
    description = "An easy-to-use library that allows you to search and download audio from VK, bypassing the restriction on obtaining a token to use the VK audio API.",
11
    long_description = long_description,
12
    long_description_content_type = "text/markdown",
13
    url = "https://github.com/Exponefrv1/univk_audio",
14
    install_requires = [
15
        "aiofiles",
16
        "aiohttp",
17
        "beautifulsoup4",
18
        "httpx",
19
        "lxml",
20
    ],
21
    packages = setuptools.find_packages(),
22
    classifiers=[
23
        "Programming Language :: Python :: 3",
24
        "License :: OSI Approved :: MIT License",
25
        "Operating System :: OS Independent",
26
    ],
27
    python_requires = ">=3.7",
28
    keywords='vk audio music songs search download free univk vk_audio',
29
    project_urls={
30
        "Homepage": "https://github.com/Exponefrv1/univk_audio",
31
        "Issues": "https://github.com/Exponefrv1/univk_audio/issues",
32
        "Author": "https://t.me/AnemoneSong",
33
    },
34
)
35