blob: cdbdc1c15050453a16b8b7fb380ab7b5e29d3956 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 = "Ulfalizer Magnusson",
author_email = "kconfiglib@gmail.com",
url = "https://github.com/ulfalizer/Kconfiglib",
# Description of the modules and packages in the distribution
py_modules = ['kconfiglib'],
)
|