Dirk Mueller
a686ebbe3c
* Make python installation configurable for distro packaging (meson) * Revert "os.py: Add function to read the VERSION_CODENAME in /etc/os-release * Revert "os.py: rename get_os_release_codename() * os.py: rename get_os_release_codename() to get_os_release_info() * os.py: Add function to read the VERSION_CODENAME in /etc/os-release - update to 2.4.1: * fix lintian error and build failure - update to 2.4.0: * Use access() to test readability of /proc/cmdline * Use meson to build - update to 2.2.2: * scale widget: Add the units to the value instead of appending it to - update spec file to newer standards, add the older setup.py, so we can build it for multiple python versions OBS-URL: https://build.opensuse.org/package/show/X11:Cinnamon:Factory/python-xapp?expand=0&rev=25
18 lines
558 B
Python
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",
|
|
],
|
|
)
|