blob: 97e716b965c2bfea40d9b3d31c8c64df102a761f (
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 = "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'],
)
|