-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 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
30
31
32
33
from setuptools import setup
setup(
name='dns-proc-detector',
version='0.1.0.dev1',
packages=['dns_proc_detector'],
url='https://github.com/HDScorpio/dns-proc-detector',
license='MIT',
author='Andrey Ulagashev',
author_email='[email protected]',
description='Process detector by DNS usage',
python_requires='>= 3.6',
setup_requires=['setuptools'],
install_requires=['dnslib', 'psutil'],
entry_points={
'console_scripts': ['dns-proc-detect = dns_proc_detector.server:main']
},
classifier=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet'
'Topic :: Internet :: Name Service (DNS)'
]
)