Codebase list pyxdg / 03a780f2-9d5c-4d6e-a103-91c98c352f36/main setup.py
03a780f2-9d5c-4d6e-a103-91c98c352f36/main

Tree @03a780f2-9d5c-4d6e-a103-91c98c352f36/main (Download .tar.gz)

setup.py @03a780f2-9d5c-4d6e-a103-91c98c352f36/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",
       ],
)