forked from icanhasfay/PyPwned
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 1.06 KB
/
setup.py
File metadata and controls
29 lines (28 loc) · 1.06 KB
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
from setuptools import setup
setup(
name="pypwned",
packages=["pypwned"],
package_dir={"pypwned": "pypwned"},
version="0.1.6",
description="A Python client for the HaveIBeenPwned REST API",
long_description=open("README.md").read() + "\n\n" + open("CHANGES.rst").read(),
author="Eric Fay",
author_email="icanhasfay@gmail.com",
url="https://github.com/icanhasfay/PyPwned",
license=open("LICENSE.rst").read(),
install_requires=["requests"],
classifiers=(
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Topic :: Security",
)
)