-
Notifications
You must be signed in to change notification settings - Fork 84
/
setup.py
42 lines (41 loc) · 1.24 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
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
setup(
name='vt',
version='4.0.0.0a4',
description='VirusTotal Full API',
license='For fun :)',
packages=find_packages(),
url='https://github.com/doomedraven/VirusTotalApi',
author='Andriy Brukhovetskyy - doomedraven',
#author_email='Twitter -> @D00m3dR4v3n',
entry_points={
'console_scripts': [
'vt = vt.__main__:main',
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Security",
],
keywords=(
"virustotal vt automated malware analysis threat "
"intelligence cert soc"
),
#long_description=open("README.md", "rb").read(),
install_requires=[
"requests >= 2.5.0",
"python-dateutil >= 1.5",
"olefile >= 0.42",
"texttable",
"HTMLParser",
"six",
],
)