GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

setup   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 33
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 26
dl 0
loc 33
rs 10
c 0
b 0
f 0
wmc 0
1
#!/usr/bin/env python2.7
2
3
from setuptools import setup, find_packages
4
5
VERSION = '0.2.1'
6
7
from os import path
8
this_directory = path.abspath(path.dirname(__file__))
9
with open(path.join(this_directory, 'README.md')) as f:
10
    long_description = f.read()
11
12
setup(name='b2blaze',
13
      version=VERSION,
14
      description='Forked from George Sibble\'s B2Blaze (0.1.10). All credits to author. Original package: https://github.com/sibblegp/b2blaze',
15
      long_description=long_description,
16
      long_description_content_type='text/markdown',
17
      packages=find_packages(),
18
      author='George Sibble',
19
      author_email='[email protected]',
20
      python_requires='>=2.7',
21
      url='https://github.com/fieldse/b2blaze-fork',
22
      install_requires=[
23
            'requests==2.19.1'
24
      ],
25
      keywords='backblaze b2 cloud storage',
26
      classifiers=[
27
            'Programming Language :: Python :: 2.7',
28
            'Programming Language :: Python :: 3.6',
29
            'Intended Audience :: Developers',
30
            'Topic :: Software Development :: Libraries',
31
      ],
32
      license='MIT'
33
)
34