From 576bf6cccbe3f545ae34ba01aaa282f622b88142 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Veres-Szentkir=C3=A1lyi?= Date: Mon, 24 Jun 2013 13:42:54 +0200 Subject: [PATCH] added setup.py --- setup.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..33e1725 --- /dev/null +++ b/setup.py @@ -0,0 +1,24 @@ +# -*- encoding: utf-8 -*- + +from __future__ import unicode_literals +from distutils.core import setup + +setup( + name='PySSTV', + version='0.1', + description='Python classes for generating Slow-scan Television transmissions', + author='András Veres-Szentkirályi', + author_email='vsza@vsza.hu', + url='https://github.com/dnet/pySSTV', + packages=['pysstv', 'pysstv.tests', 'pysstv.examples'], + keywords='HAM SSTV slow-scan television Scottie Martin Robot', + license='MIT', + classifiers=[ + 'Development Status :: 4 - Beta', + 'Topic :: Communications :: Ham Radio', + 'Topic :: Multimedia :: Video :: Conversion', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', + ], + long_description=open('README.md').read(), +)