-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Remove package import from "setup.py"
- Loading branch information
1 parent
fd8ba2b
commit 420d5c8
Showing
1 changed file
with
2 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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="[email protected]", | ||
url="https://github.com/AnonymouX47/term-image", | ||
description="Display images in the terminal", | ||
|