-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
22 lines (20 loc) · 858 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
from setuptools import setup
setup(
name="tv_viewer",
version="2.3",
author="Gavin Lyons",
author_email="glyons66@hotmail.com",
description="Python PyQt5 GUI to view tv program details using tvmaze API and SQLite",
license="GPL",
keywords="televison tv_viewer tv maze SQLite PyQt gavin lyons schedule API GUI",
url="https://github.com/gavinlyonsrepo/tv_viewer",
download_url='https://github.com/gavinlyonsrepo/tv_viewer/archive/2.3.tar.gz',
packages=['tv_viewer','tv_qt_class','tv_sqllite','tv_api_work','tv_logger_conf'],
install_requires=['pip','pytvmaze','prettytable','pyqt5'],
setup_requires=['pip'],
scripts=['tv_viewer/tv_viewer.py'],
classifiers=[
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)