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

Importance

Changes 0
Metric Value
wmc 0
eloc 33
dl 0
loc 53
rs 10
c 0
b 0
f 0
1
from os import path
2
3
from setuptools import find_packages, setup
4
5
here = path.abspath(path.dirname(__file__))
6
7
with open(path.join(here, 'README.rst'), encoding='utf-8') as handle:
8
    long_description = handle.read()
9
10
setup(
11
        name='Kerapu',
12
13
        version='2.0.3',
14
15
        description='Een implementatie van de grouper',
16
        long_description=long_description,
17
18
        url='https://github.com/SetBased/py-kerapu',
19
20
        author='Paul Water',
21
        author_email='[email protected]',
22
23
        license='MIT',
24
25
        classifiers=[
26
            'Development Status :: 5 - Production/Stable',
27
28
            'Intended Audience :: Developers',
29
30
            'License :: OSI Approved :: MIT License',
31
            'Natural Language :: Dutch',
32
            'Operating System :: OS Independent',
33
34
            'Programming Language :: Python :: 3',
35
            'Programming Language :: Python :: 3.6',
36
            'Programming Language :: Python :: 3.7',
37
            'Programming Language :: Python :: 3.8',
38
            'Programming Language :: Python :: 3.9',
39
        ],
40
41
        keywords='DBC Grouper',
42
43
        packages=find_packages(exclude=['build', 'test']),
44
45
        entry_points={
46
            'console_scripts': [
47
                'kerapu = kerapu.application.kerapu:main',
48
            ],
49
        },
50
51
        install_requires=['cleo==0.6.8',
52
                          'lxml>=4.6.1, <5']
53
)
54