21 lines
480 B
Python
21 lines
480 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='gentoo-img',
|
|
version='0.1',
|
|
description='Simple utility to create disk images from Gentoo stages',
|
|
author='Dustin C. Hatch',
|
|
author_email='dustin@hatch.name',
|
|
url='http://dustin.hatch.name/',
|
|
license='GPL-3',
|
|
package_dir={'': 'src'},
|
|
py_modules=[
|
|
'gentoo_img',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'gentoo-img=gentoo_img:main',
|
|
],
|
|
},
|
|
)
|