-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 loc) · 1.08 KB
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="psl-dns",
version="1.1.1",
author="Peter Thomassen",
author_email="[email protected]",
description="Query the Public Suffix List (PSL) via DNS and check the PSL status of a domain.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sse-secure-systems/psl-dns",
packages=setuptools.find_packages(),
install_requires=['dnspython>=1.14.0', 'requests>=2.22.0'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: Name Service (DNS)",
],
entry_points = {
'console_scripts': ['psl-dns_check=psl_dns.commands.check:main',
'psl-dns_parse=psl_dns.commands.parse:main',
'psl-dns_query=psl_dns.commands.query:main',],
}
)