-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
31 lines (28 loc) · 995 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
"""setup module"""
from setuptools import setup, find_packages
import os
from pywnedpasswords import __version__
readme_file = os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md")
with open(readme_file) as f:
readme = f.read()
setup(
name="pywnedpasswords",
version=__version__,
description="Client for HIBP passwords api using K-Anonymity method",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/xmatthias/pywnedpasswords",
author="Matthias Voppichler",
author_email="[email protected]",
license="MIT",
entry_points="""
[console_scripts]
pywnedpasswords=pywnedpasswords.pywnedpasswords:main
""",
python_requires=">=3",
packages=find_packages(),
install_requires=["requests>=2"],
zip_safe=False,
keywords=["pwnedpasswords", "passwords", "pwned", "security"],
project_urls={"Source Code": "https://github.com/xmatthias/pywnedpasswords"},
)