pySSTV/setup.py

25 wiersze
814 B
Python
Czysty Zwykły widok Historia

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',
2017-10-24 12:45:25 +00:00
version='0.3.1',
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'],
2017-10-24 12:45:10 +00:00
keywords='HAM SSTV slow-scan television Scottie Martin Robot Pasokon',
install_requires = ['Pillow',],
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(),
)