From 3ea097771e6004b825d4501628f670f41a25bc3b Mon Sep 17 00:00:00 2001 From: PB2 Date: Sat, 7 Dec 2019 23:35:30 -0500 Subject: [PATCH] Add files via upload --- setup.cfg | 2 ++ setup.py | 14 ++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 setup.cfg create mode 100644 setup.py diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..a2f3748 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..7a834e8 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +from distutils.core import setup + +setup( + name = 'pyTransfer', + packages = ['pyTransfer'], + version = '1.0.0', + description = 'Python package used to transmit and receive low overhead byte packets - especially useful for PC<-->Arduino USB communication (compatible with https://github.com/PowerBroker2/SerialTransfer)', + author = 'Power_Broker', + author_email = 'gitstuff2@gmail.com', + url = 'https://github.com/PowerBroker2/pyTransfer', + download_url = 'download link you saved', + keywords = ['Arduino', 'serial', 'usb', 'protocol', 'communication'], + classifiers = [], +) \ No newline at end of file