2013-06-24 11:42:54 +00:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
|
2013-06-24 12:33:31 +00:00
|
|
|
from setuptools import setup
|
2013-06-24 11:42:54 +00:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='PySSTV',
|
2014-04-23 08:25:03 +00:00
|
|
|
version='0.2.5',
|
2013-06-24 11:42:54 +00:00
|
|
|
description='Python classes for generating Slow-scan Television transmissions',
|
2013-06-24 12:33:14 +00:00
|
|
|
author=u'András Veres-Szentkirályi',
|
2013-06-24 11:42:54 +00:00
|
|
|
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',
|
2013-06-24 12:33:42 +00:00
|
|
|
install_requires = ['PIL',],
|
2013-06-24 11:42:54 +00:00
|
|
|
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(),
|
|
|
|
)
|