From 8885d6a5b9035f2eb0c02e697dc0bfb45c8b5a7f Mon Sep 17 00:00:00 2001 From: "Anthony G. Basile" Date: Tue, 30 Jun 2015 22:15:35 -0400 Subject: Initial commit. --- setup.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..e5934a8 --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup( + name = 'grs', + version = '0.1', + description = 'Gentoo Release System Suite', + long_description = + """ + The Gentoo Reference System (GRS) Suite is a set of utilities for producing + and maintaining identical Gentoo systems from a series of configuration files + housed on a central git repository. + """, + url = 'https://wiki.gentoo.org/wiki/Project:Gentoo_Release_System', + author = 'Anthony G. Basile', + author_email = 'blueness@gentoo.org', + license = 'GNU General Public License, Version 2', + packages = ['grs'], + scripts = ['grsrun', 'grsup', 'clean-worldconf', 'install-worldconf'], + data_files = [('/etc/grs', ['systems.conf'])] +) -- cgit v1.2.3