[Xcb] [PATCH 2/4] xcbgen: add basic setup.py

Marty E. Plummer hanetzer at startmail.com
Thu Aug 2 06:02:47 UTC 2018


Signed-off-by: Marty E. Plummer <hanetzer at startmail.com>
---
 setup.py | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 setup.py

diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..96b20bd
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,21 @@
+# -*- coding: utf-8 -*-
+
+from distutils.core import setup
+
+setup(
+    name = 'xcbgen',
+    version = '1.13',
+    url = 'https://xcb.freedesktop.org',
+    package_dir = {'': 'lib'},
+    packages = ['xcbgen'],
+
+    classifiers = [
+        'Development Status :: 5 - Production/Stable',
+        'Environment :: Console',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: MIT License',
+        'Operating System :: POSIX',
+        'Programming Language :: Python',
+        'Topic :: Software Development'
+    ]
+)
-- 
2.18.0



More information about the Xcb mailing list