setup   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 34
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 30
dl 0
loc 34
rs 10
c 0
b 0
f 0
wmc 0
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 :: 5 - Production/Stable',
26
        'Intended Audience :: Developers',
27
        'License :: OSI Approved :: MIT License',
28
        'Programming Language :: Python :: 3.4',
29
        'Programming Language :: Python :: 3.7',
30
    ],
31
    test_suite="tests",
32
    packages=find_packages(exclude=["tests*"]),
33
    install_requires=['requests >= 2.22.0']
34
    )
35