-
-
Notifications
You must be signed in to change notification settings - Fork 355
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 730 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import setuptools
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="wifi-password",
version="1.1.1",
author="Siddharth Dushantha",
author_email="siddharth.dushantha@gmail.com",
description="Quickly fetch your WiFi password and if needed, generate a QR code of your WiFi to allow phones to easily connect",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sdushantha/wifi-password",
packages=setuptools.find_packages(),
entry_points={"console_scripts": ["wifi-password = wifi_password.wifi_password:main"]},
install_requires=["qrcode", "image", "Pillow", "colorama"],
)