summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorulfalizer <ulfalizer@gmail.com>2012-10-24 12:05:17 -0700
committerulfalizer <ulfalizer@gmail.com>2012-10-24 12:05:17 -0700
commit2bc566d8090d1029f2dcd0676c26c59b402dcbee (patch)
tree5b2048fd3b25e9999e497cc66065051286d01847
parenta09afde457c51e249bb0ce3fbc5b8f214f7fa52d (diff)
parenta4b5b2008a06d480f64254638260d1d1d6b599ac (diff)
Merge pull request #1 from fpemud/master
Add dist-utils support for Gentoo ebuild.
-rw-r--r--setup.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..97e716b
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,17 @@
+#!/usr/bin/env python
+
+"""Setup script for the kconfiglib module."""
+
+from distutils.core import setup
+
+setup (# Distribution meta-data
+ name = "kconfiglib",
+ version = "0.0.1",
+ description = "A flexible Python Kconfig parser",
+ author = "Ulf Magnusson",
+ author_email = "ulfalizer@gmail.com",
+ url = "https://github.com/ulfalizer/Kconfiglib",
+
+ # Description of the modules and packages in the distribution
+ py_modules = ['kconfiglib'],
+ )