From 4076819572f4dec90050771a58a4753d20a3f68b Mon Sep 17 00:00:00 2001 From: Neil Williams Date: Sat, 15 Aug 2015 17:01:37 +0200 Subject: add setuptools support --- setup.py | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..1c59145 --- /dev/null +++ b/setup.py @@ -0,0 +1,48 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# setup.py +# +# Copyright 2015 Neil Williams +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + + +from setuptools import setup, find_packages + + +setup( + name='vmdebootstrap', + version='1.0', + description='Bootstrap Debian into a (virtual machine) disk image', + author='Neil Williams', + author_email='codehelp@debian.org', + url='http://git.liw.fi/cgi-bin/cgit/cgit.cgi/vmdebootstrap/', + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Environment :: Console', + 'Intended Audience :: Developers', + 'Intended Audience :: System Administrators', + 'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)', + 'Programming Language :: Python', + 'Topic :: System :: Installation/Setup', + ], + packages=[ + 'vmdebootstrap', + ], + package_data={ + 'vmdebootstrap': ['README', 'COPYING', 'NEWS'], + }, + scripts=['bin/vmdebootstrap'] +) -- cgit v1.2.1