Skip to content

Commit

Permalink
Add long description
Browse files Browse the repository at this point in the history
  • Loading branch information
PowerBroker2 authored Nov 14, 2020
1 parent af2edd9 commit 1dce253
Showing 1 changed file with 16 additions and 11 deletions.
27 changes: 16 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
from setuptools import setup

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name = 'pySerialTransfer',
packages = ['pySerialTransfer'],
version = '2.0.4',
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 = '[email protected]',
url = 'https://github.com/PowerBroker2/pySerialTransfer',
download_url = 'https://github.com/PowerBroker2/pySerialTransfer/archive/2.0.4.tar.gz',
keywords = ['Arduino', 'serial', 'usb', 'protocol', 'communication'],
classifiers = [],
install_requires=['pyserial']
name = 'pySerialTransfer',
packages = ['pySerialTransfer'],
version = '2.0.4',
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)',
long_description = long_description,
long_description_content_type = "text/plain",
author = 'Power_Broker',
author_email = '[email protected]',
url = 'https://github.com/PowerBroker2/pySerialTransfer',
download_url = 'https://github.com/PowerBroker2/pySerialTransfer/archive/2.0.4.tar.gz',
keywords = ['Arduino', 'serial', 'usb', 'protocol', 'communication'],
classifiers = [],
install_requires = ['pyserial']
)

0 comments on commit 1dce253

Please sign in to comment.