Skip to content

Commit

Permalink
Replaced os.path with pathlib (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbermuehler authored Jan 19, 2022
1 parent cc96c9d commit 8d60125
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
from os import path
from pathlib import Path
from setuptools import setup, find_packages

this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
readme_file = Path(__file__).parent.resolve() / 'README.md'
long_description = readme_file.read_text()

setup(
name='aws-quota-checker',
Expand Down

0 comments on commit 8d60125

Please sign in to comment.