pySSTV/setup.py

25 lines
803 B
Python
Raw Normal View History

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