aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: f4044d4931fa955af94cd3717674d0bc272c3858 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from distutils.core import setup

setup(
    name="pyfunkwhale",
    description="A simple funkwhale API client library",
    version="0.0.1",
    author="neodarz",
    author_email="neodarz@neodarz.net",
    url="https://git.neodarz.net/neodarz/pyfunkwhale.git",
    license="GPLv3",
    packages=["pyfunkwhale"],
    classifiers=[
        'Development Status :: 1 - Planning',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: GNU General Public License v3 or later '
        '(GPLv3+)',
        'Programming Language :: Python :: 3']
)