Skip to content

Commit

Permalink
jumping arround in order to find way to upload it to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeymaysak committed Jul 30, 2020
1 parent 2a2d60e commit 28b858e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Expand Up @@ -8,8 +8,11 @@

import wirelesstagpy.constants as CONST

with open("README.md", "r") as fh:
long_description = fh.read()
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

PACKAGES = find_packages(exclude=['test', 'test.*', 'test*'])

Expand Down

0 comments on commit 28b858e

Please sign in to comment.