-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
32 lines (29 loc) · 921 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
with open("README.md", "r") as fp:
long_description = fp.read()
setup(
name="terminal-img",
version="0.0.3",
author="Pranav Baburaj",
author_email="i.am.pranav.baburaj@gmail.com",
url="https://github.com/pranavbaburaj/img",
py_modules=["image", "cli"],
description="Display images in the terminal",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
classifiers=classifiers,
python_requires=">=3.6",
install_requires=["pillow", "requests"],
entry_points={
"console_scripts": ["img=cli:main"],
},
)