-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 1.09 KB
/
setup.py
File metadata and controls
30 lines (29 loc) · 1.09 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
30
from setuptools import setup
setup(
name="pypwned",
packages=["pypwned"],
package_dir={"pypwned": "pypwned"},
version="1.0.0",
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="MIT",
install_requires=["requests"],
long_description_content_type="text/markdown",
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",
)
)