Skip to content

Commit

Permalink
Fix setup.py module issue
Browse files Browse the repository at this point in the history
  • Loading branch information
matfax committed Oct 12, 2019
1 parent 7f12f4e commit 1893d5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
from setuptools import setup, find_packages
from pathlib import Path

from mutapath import Path
from setuptools import setup, find_packages

setup(
name='mutapath',
packages=find_packages(),
version_format='{tag}',
license='lgpl-3.0',
description='Mutable Pathlib',
long_description=Path("README.md").text(),
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
author='matfax',
author_email='[email protected]',
Expand Down

0 comments on commit 1893d5f

Please sign in to comment.