Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
robputt authored Aug 3, 2024
1 parent fbe811e commit e496013
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@

setup(
name="https_dns_proxy",
description='Proxies UDP DNS requests to Google DNS over HTTPS Service',
version="1.0.0",
packages=find_packages(),
entry_points = {
'console_scripts': ['https_dns_proxy=https_dns_proxy:run'],
},
install_requires=[
'configparser==7.0.0',
'requests==2.19.0',
'dnslib==0.9.25'
],
python_requires='>=3.8'
)

0 comments on commit e496013

Please sign in to comment.