-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (30 loc) · 1.12 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
from setuptools import setup,find_packages
from glob import glob,iglob
from DnsBench import __version__
setup(
name='DnsBench',
version=__version__,
url='https://github.com/aravindha1234u/dnsbench',
license='MIT',
author='Aravindha Hariharan M, Kumaran S',
author_email='aravindha1234u@gmail.com, kumaransubramanian0007@gmail.com',
description='Multi-Threaded Python Application for Dns Benchmark',
long_description = ''.join(open('README.md', encoding='utf-8').readlines()),
long_description_content_type ='text/markdown',
packages=['DnsBench'],
include_package_data=True,
install_requires=['Eel', 'pyinstaller',"beautifulsoup4", "requests", "dnspython","dnspython[doh]","pyautogui"],
python_requires='>=3.5',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
],
entry_points={
'console_scripts': [
'DnsBench=DnsBench.__main__:main',
'dnsbench=DnsBench.__main__:main'
],
},
)