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 31
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 26
dl 0
loc 31
rs 10
c 0
b 0
f 0
1
import os
2
from setuptools import setup, find_packages
3
PACKAGES = find_packages()
4
5
# Get version and release info, which is all stored in shablona/version.py
6
ver_file = os.path.join('battdeg', 'version.py')
7
with open(ver_file) as f:
8
    exec(f.read())
9
10
opts = dict(name=NAME,
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable NAME does not seem to be defined.
Loading history...
11
            maintainer=MAINTAINER,
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable MAINTAINER does not seem to be defined.
Loading history...
12
            maintainer_email=MAINTAINER_EMAIL,
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable MAINTAINER_EMAIL does not seem to be defined.
Loading history...
13
            description=DESCRIPTION,
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable DESCRIPTION does not seem to be defined.
Loading history...
14
            long_description=LONG_DESCRIPTION,
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable LONG_DESCRIPTION does not seem to be defined.
Loading history...
15
            url=URL,
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable URL does not seem to be defined.
Loading history...
16
            download_url=DOWNLOAD_URL,
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable DOWNLOAD_URL does not seem to be defined.
Loading history...
17
            license=LICENSE,
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable LICENSE does not seem to be defined.
Loading history...
18
            classifiers=CLASSIFIERS,
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable CLASSIFIERS does not seem to be defined.
Loading history...
19
            author=AUTHOR,
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable AUTHOR does not seem to be defined.
Loading history...
20
            author_email=AUTHOR_EMAIL,
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable AUTHOR_EMAIL does not seem to be defined.
Loading history...
21
            platforms=PLATFORMS,
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable PLATFORMS does not seem to be defined.
Loading history...
22
            version=VERSION,
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable VERSION does not seem to be defined.
Loading history...
23
            packages=PACKAGES,
24
            package_data=PACKAGE_DATA,
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable PACKAGE_DATA does not seem to be defined.
Loading history...
25
            install_requires=REQUIRES,
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable REQUIRES does not seem to be defined.
Loading history...
26
            requires=REQUIRES)
27
28
29
if __name__ == '__main__':
30
    setup(**opts)
31