This repository was archived by the owner on Nov 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 1.34 KB
/
setup.py
File metadata and controls
39 lines (34 loc) · 1.34 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
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
setup(
name='DnsCryptProxyPiTool',
version='0.19',
url='https://github.com/jmcgrath207/DnsCryptProxyPiTool',
license='MIT License',
author='John McGrath',
author_email='john.mcgrath207@gmail.com',
description='DnsCrypt Proxy 2 Setup for PiHole Raspberry Pi 3',
python_requires=">=3.5",
install_requires=['Fabric3>=1.14.post1','Click>=6.7','click-help-colors>=0.4','requests>=2.18.4'],
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=False,
entry_points={
'console_scripts': [
'dnscrypt-proxy-pi-tool=DnsCryptProxyPiTool.Command:mainCommand',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
)