forked from FuturisticGoo/maskpass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 871 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="maskpass",
version="0.3.7",
description=("getpass alternative with masking, Spyder support and"+
" additional features "),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/FuturisticGoo/maskpass",
author="Aman Anifer",
author_email="[email protected]",
license="MIT",
keywords=["password", "getpass", "getpass3", "mask",
"spyder", "input", "pynput"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
packages=find_packages(),
include_package_data=True,
install_requires=["pynput"],
)