|
1
|
|
|
from setuptools import setup, find_packages |
|
2
|
|
|
import vtapi3 |
|
3
|
|
|
|
|
4
|
|
|
with open('README.rst', 'r', encoding='utf-8') as readme_file: |
|
5
|
|
|
readme = readme_file.read() |
|
6
|
|
|
with open('HISTORY.rst', 'r', encoding='utf-8') as history_file: |
|
7
|
|
|
history = history_file.read() |
|
8
|
|
|
|
|
9
|
|
|
setup( |
|
10
|
|
|
name='vtapi3', |
|
11
|
|
|
version = vtapi3.__version__, |
|
12
|
|
|
description = 'VirusTotal API', |
|
13
|
|
|
long_description = readme + '\n\n' + history, |
|
14
|
|
|
author = vtapi3.__author__, |
|
15
|
|
|
author_email = vtapi3.__author_email__, |
|
16
|
|
|
url='https://github.com/drobotun/virustotalapi3/', |
|
17
|
|
|
zip_safe=False, |
|
18
|
|
|
license=vtapi3.__license__, |
|
19
|
|
|
keywords='virustotal api', |
|
20
|
|
|
project_urls={ |
|
21
|
|
|
'Documentation': 'https://virustotalapi3.readthedocs.io/', |
|
22
|
|
|
'Source': 'https://github.com/drobotun/virustotalapi3/' |
|
23
|
|
|
}, |
|
24
|
|
|
classifiers=[ |
|
25
|
|
|
'Development Status :: 4 - Beta', |
|
26
|
|
|
'Intended Audience :: Developers', |
|
27
|
|
|
'License :: OSI Approved :: MIT License', |
|
28
|
|
|
'Programming Language :: Python :: 3.4', |
|
29
|
|
|
'Programming Language :: Python :: 3.7', |
|
30
|
|
|
], |
|
31
|
|
|
packages=find_packages(), |
|
32
|
|
|
install_requires=['requests >= 2.22.0'] |
|
33
|
|
|
) |
|
34
|
|
|
|