[27582] in Source-Commits
xdsc commit: Add a distutils setup script
daemon@ATHENA.MIT.EDU (Jonathan D Reed)
Mon Feb 3 16:16:42 2014
Date: Mon, 3 Feb 2014 16:16:35 -0500
From: Jonathan D Reed <jdreed@MIT.EDU>
Message-Id: <201402032116.s13LGZRr029125@drugstore.mit.edu>
To: source-commits@MIT.EDU
https://github.com/mit-athena/xdsc/commit/52cf95adc19706377cbc712dea28aefc842b09ea
commit 52cf95adc19706377cbc712dea28aefc842b09ea
Author: Jonathan Reed <jdreed@mit.edu>
Date: Mon Feb 3 16:11:10 2014 -0500
Add a distutils setup script
Add a setup.py script, since we're going to pretend this software
is useful outside of Project Athena
setup.py | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..625af19
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,13 @@
+#!/usr/bin/python
+
+from distutils.core import setup
+
+setup(name='xdsc',
+ version='10.1',
+ description='Gtk 3 graphical client for Athena discuss',
+ author='Jonathan Reed',
+ maintainer='Debathena Project',
+ maintainer_email='debathena@mit.edu',
+ scripts=['xdsc'],
+ data_files=[('/usr/share/xdsc', ['xdsc.ui', 'xdsc_icon.gif'])],
+ )