-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (37 loc) · 1.31 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
30
31
32
33
34
35
36
37
38
39
40
41
# SPDX-License-Identifier: GPL-3.0-only
from setuptools import setup, find_packages
import os.path
pwd = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(pwd, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="nxdomain",
version="1.0.2",
description="Downloads and converts domain block lists for use with BIND/named RPZ files or dnsmasq host files.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/zopieux/nxdomain",
author="Alexandre Macabies",
author_email="[email protected]",
install_requires=["dnspython~=2.0"],
packages=find_packages(),
entry_points={
'console_scripts': [
'nxdomain=nxdomain.__main__:main'
]
},
project_urls={
"Bug Reports": "https://github.com/zopieux/nxdomain/issues",
"Source": "https://github.com/zopieux/nxdomain",
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
zip_safe=True,
include_package_data=True,
)