-
Notifications
You must be signed in to change notification settings - Fork 61
/
setup.py
33 lines (27 loc) · 884 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
#!/usr/bin/env python
try:
from setuptools import setup
except:
from distutils.core import setup
import virustotal
setup(
name = "virustotal",
description = "Pythonic VirusTotal Public API 2.0 client",
py_modules = ["virustotal"],
test_suite = "tests",
version = virustotal.__version__,
author = virustotal.__author__,
author_email = virustotal.__email__,
url = "https://github.com/gawen/virustotal",
license = virustotal.__license__,
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)