aboutsummaryrefslogblamecommitdiffstats
path: root/setup.py
blob: 378870bd629dea26ac1424b14f57dbf052f9d4ef (plain) (tree)




















                                                       
import setuptools

setuptools.setup(
        name="beets-oriole",
        version="0.1.0",
        author="Wolfgang Müller",
        author_email="wolf@oriole.systems",
        description="A collection of beets plugins",
        url="https://git.oriole.systems/beets-plugins",
        classifiers = [
            "Programming Language :: Python :: 3",
            "License :: OSI Approved :: MIT License",
        ],
        packages=['beetsplug'],
        python_requires=">=3.8",

        install_requires = [
            'beets>=1.6.0',
            'python-mpd2>=3.0.5',
        ]
)