-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 681 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import setuptools
def get_long_description():
return open("README.md", "r", encoding="utf8").read()
setuptools.setup(
name="minimizer",
version="0.4.5",
url="https://github.com/alexbotello/minimizer",
license="MIT",
description="A command line tool to shrink image(s) in a directory to a specified size",
long_description=get_long_description(),
author="Alexander Botello",
author_email="alexander.botello@g.austincc.edu",
packages=setuptools.find_packages(),
py_modules=["minimizer"],
install_requires=["click", "pillow", "crayons"],
entry_points="""
[console_scripts]
minimizer=minimizer.cli:run
""",
)