From 1df4ee5122bcc1e8cfcf4d4293aade06d14503dd Mon Sep 17 00:00:00 2001 From: Al Sweigart Date: Sun, 4 Oct 2020 16:39:57 -0700 Subject: [PATCH] Updating supported python versions in the setup.py file --- AUTHORS.txt | 4 ++++ README.md | 4 +++- setup.py | 4 +++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/AUTHORS.txt b/AUTHORS.txt index e28ec51..95013cc 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -17,17 +17,21 @@ Edd Barrett https://github.com/vext01 Eugene Yang https://github.com/eugene-yang Felix Yan https://github.com/felixonmars fthoma https://github.com/fthoma +Greg Witt https://github.com/GoodGuyGregory hinlader https://github.com/hinlader Hugo https://github.com/hugovk Hynek Cernoch https://github.com/hynekcer Jason R. Coombs https://github.com/jaraco Jon Crall https://github.com/Erotemic Jonathan Slenders https://github.com/jonathanslenders +JustAShoeMaker https://github.com/JustAShoeMaker Marcelo Glezer https://github.com/gato Maximilian Hils https://github.com/mhils +Michał Górny https://github.com/mgorny Nikolaos-Digenis Karagiannis https://github.com/Digenis Nils Ohlmeier https://github.com/nils-ohlmeier Orson Peters https://github.com/orlp +pgajdos https://github.com/pgajdos Six https://github.com/brbsix Stefan Devai https://github.com/stefandevai Stefan Scherfke https://github.com/sscherfke diff --git a/README.md b/README.md index 4016811..e9010f6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ Pyperclip is a cross-platform Python module for copy and paste clipboard functions. It works with Python 2 and 3. -`pip install pyperclip` +Install on Windows: `pip install pyperclip` + +Install on Linux/macOS: `pip3 install pyperclip` Al Sweigart al@inventwithpython.com BSD License diff --git a/setup.py b/setup.py index c9de59e..694e4a9 100644 --- a/setup.py +++ b/setup.py @@ -43,5 +43,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', ], -) \ No newline at end of file +)