aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 69a4a3b253f983ac1053029e37047f05d46cfeed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import setuptools

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

        install_requires = [
            "beets>=1.6.0",
        ],
)