Codebase list pyxdg / 8f2a0454-1946-4156-ae30-e6b095f99ca2/main setup.py
8f2a0454-1946-4156-ae30-e6b095f99ca2/main

Tree @8f2a0454-1946-4156-ae30-e6b095f99ca2/main (Download .tar.gz)

setup.py @8f2a0454-1946-4156-ae30-e6b095f99ca2/mainraw · history · blame

#!/usr/bin/env python3

from setuptools import setup

setup( name = "pyxdg",
       version = "0.27",
       description = "PyXDG contains implementations of freedesktop.org standards in python.",
       maintainer = "Freedesktop.org",
       maintainer_email = "xdg@lists.freedesktop.org",
       url = "http://freedesktop.org/wiki/Software/pyxdg",
       packages = ['xdg'],
       classifiers = [
            "License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
            "Programming Language :: Python :: 2.7",
            "Programming Language :: Python :: 3",
            "Topic :: Desktop Environment",
       ],
)