-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
33 lines (31 loc) · 901 Bytes
/
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='VirusTotal',
description='Command-line script to interact with VirusTotal',
long_description=open('README.md').read(),
author='Adrian Herrera',
url='https://github.com/adrianherrera/virustotal',
version='0.11',
license='GNU General Public License v3',
install_requires=[
'requests',
'virustotal-api',
],
scripts=[
'vt_driver.py',
],
entry_points={
'console_scripts': [
'virustotal = vt_driver:main',
]
},
classifiers=(
'Environment :: Console',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Security',
),
)