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 54 55 56 57 58 59 60 61 62 63 64 65
|
#!/usr/bin/env python3
"""Package setup."""
import os
import re
import sys
from setuptools import find_packages, setup
if sys.hexversion < 0x30A0000:
print("Python version %s is unsupported, >= 3.10.0 is needed" % (".".join(map(str, sys.version_info[:3]))))
exit(1)
with open(os.path.join("sacad", "__init__.py"), "rt") as f:
version_match = re.search('__version__ = "([^"]+)"', f.read())
assert version_match is not None
version = version_match.group(1)
with open("requirements.txt", "rt") as f:
requirements = f.read().splitlines()
if sys.platform == "win32":
requirements.append("idna==2.6")
with open("test-requirements.txt", "rt") as f:
test_requirements = f.read().splitlines()
with open("README.md", "rt") as f:
readme = f.read()
setup(
name="sacad",
version=version,
author="desbma",
packages=find_packages(exclude=("tests",)),
entry_points={"console_scripts": ["sacad = sacad:cl_main", "sacad_r = sacad.recurse:cl_main"]},
test_suite="tests",
install_requires=requirements,
tests_require=test_requirements,
description="Search and download music album covers",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/desbma/sacad",
download_url="https://github.com/desbma/sacad/archive/%s.tar.gz" % (version),
keywords=["download", "album", "cover", "art", "albumart", "music"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Multimedia :: Graphics",
"Topic :: Utilities",
],
)
|