Skip to content

Commit

Permalink
chore: clean os.path
Browse files Browse the repository at this point in the history
  • Loading branch information
njzjz committed Nov 15, 2019
1 parent 14dd59e commit 0148d94
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Expand Up @@ -2,13 +2,12 @@


import os
from os import path

from setuptools import find_packages, setup, Extension

if __name__ == '__main__':
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'docs', 'README.md'), encoding='utf-8') as f:
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'docs', 'README.md'), encoding='utf-8') as f:
long_description = f.read()

tests_require = ['requests', 'pytest-sugar', 'pytest-cov', 'cython'],
Expand Down

0 comments on commit 0148d94

Please sign in to comment.