The repository now contains a Vagrantfile for running the testing script against an RPM package created locally using `make rpm`. To run this test use `make vagrant-test`. setup.py was also modified to adhere to packaging guidelines and not to install system-level executables. The lincense is now included in the Python package using the MANIFEST.in file.
13 lines
277 B
Python
13 lines
277 B
Python
import glob
|
|
import setuptools
|
|
|
|
setuptools.setup(
|
|
name="osbuild",
|
|
version="1",
|
|
description="A build system for OS images",
|
|
packages=["osbuild"],
|
|
license='Apache-2.0',
|
|
entry_points={
|
|
"console_scripts": ["osbuild = osbuild.__main__:main"]
|
|
},
|
|
)
|