Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Parse long_description into pypi via README
Browse files Browse the repository at this point in the history
  • Loading branch information
myoung34 committed Feb 14, 2020
1 parent 7f8b603 commit f33abe7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@
"""Setup file for the package"""
from setuptools import find_packages, setup

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

setup(
name='Tilty',
description='A pluggable system to receive and transmit bluetooth events from the Tilt Hydrometer', # noqa
author='Marcus Young',
author_email='[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
py_modules=['tilty', 'blescan'],
version='0.2.0',
version='0.2.1',
packages=find_packages(exclude=['tests*']),
install_requires=[
'Click',
Expand Down

0 comments on commit f33abe7

Please sign in to comment.