diff --git a/setup.py b/setup.py index 3f44f581..957c1700 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,5 @@ -import os -import sys - from setuptools import setup -# To locate the package since `setuptools.build_meta` modifies `sys.path` -sys.path.append(os.path.join(os.getcwd(), "src")) - -from term_image import __author__, __version__ # noqa: E402 - classifiers = [ "Environment :: Console", "License :: OSI Approved :: MIT License", @@ -32,8 +24,8 @@ setup( name="term-image", - version=__version__, - author=__author__, + version="0.5.0.dev0", + author="AnonymouX47", author_email="anonymoux47@gmail.com", url="https://github.com/AnonymouX47/term-image", description="Display images in the terminal",