From 7ed834d8f3f320814607ee3f0fe79975a7494293 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Fri, 26 Aug 2016 15:09:51 +0200 Subject: Fork Canonical's thin-client-config-agent script and maintain it in the Arctica Project's namespace. --- setup.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..5b82eb8 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +#!/usr/bin/python3 + +from setuptools import setup +import re + +setup( + name='thinclient-config-agent', + version=re.search(r'\((.*)\)', open('debian/changelog').readline()).group(1), + license='GPL', + description='Retrieve the list of remote desktop servers for a user.', + long_description='Retrieve the list of remote desktop servers for a user.', + packages=['tccalib'], + test_suite='tccalib', +) -- cgit v1.2.3