python-xapp/setup.py

18 lines
558 B
Python

#!/usr/bin/python
from setuptools import setup
setup( name = "python-xapp",
version = "0.0.0",
description = "Python Xapp Library",
maintainer = "Linux Mint",
maintainer_email = "root@linuxmint.com",
url = "http://github.com/linuxmint/python-xapp",
packages = ['xapp'],
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Programming Language :: Python :: 3",
"Topic :: Desktop Environment",
],
)