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.
Completed
Push — master ( be813a...3d8811 )
by P.R.
06:43 queued 46s
created

setup   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 50
Duplicated Lines 0 %

Importance

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