add setup.py (#12)
This commit is contained in:
parent
75aab4600c
commit
6fb843f7f6
1 changed files with 15 additions and 0 deletions
15
setup.py
Normal file
15
setup.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
|
||||
import glob
|
||||
import setuptools
|
||||
|
||||
setuptools.setup(
|
||||
name="osbuild",
|
||||
version="1",
|
||||
description="A build system for OS images",
|
||||
py_modules=["osbuild"],
|
||||
data_files=[
|
||||
("/usr/bin", ["osbuild"]),
|
||||
("/usr/lib/osbuild/stages", glob.glob("./stages/*")),
|
||||
("/usr/lib/osbuild/assemblers", glob.glob("./assemblers/*"))
|
||||
]
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue