forked from dnet/pySSTV
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (23 loc) · 871 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- encoding: utf-8 -*-
from setuptools import setup
setup(
name='PySSTV',
version='0.4.3',
description='Python classes for generating Slow-scan Television transmissions',
author=u'András Veres-Szentkirályi',
author_email='[email protected]',
url='https://github.com/dnet/pySSTV',
packages=['pysstv', 'pysstv.tests', 'pysstv.examples'],
keywords='HAM SSTV slow-scan television Scottie Martin Robot Pasokon',
install_requires = ['Pillow', 'six'],
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",
)