pySSTV/setup.py

31 wiersze
975 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',
2023-11-06 07:51:14 +00:00
version='0.5.6',
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'],
2021-04-19 14:04:53 +00:00
entry_points={
'console_scripts': [
'pysstv = pysstv.__main__:main',
],
},
2017-10-24 12:45:10 +00:00
keywords='HAM SSTV slow-scan television Scottie Martin Robot Pasokon',
2021-04-19 14:23:40 +00:00
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(),
long_description_content_type="text/markdown",
2013-06-24 11:42:54 +00:00
)