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

Importance

Changes 0
Metric Value
eloc 18
dl 0
loc 22
rs 10
c 0
b 0
f 0
wmc 0
1
# pyre-strict
2
3
import setuptools
4
5
with open('README.md', 'r') as fh:
6
    long_description = fh.read()
7
8
setuptools.setup(
9
    name='paytext',
10
    version='0.0.2',
11
    author='Yngve Høiseth',
12
    author_email='[email protected]',
13
    description='Generalize texts from payment card transactions',
14
    long_description=long_description,
15
    long_description_content_type='text/markdown',
16
    url='https://github.com/yhoiseth/paytext',
17
    packages=setuptools.find_packages(),
18
    classifiers=(
19
        'Programming Language :: Python :: 3',
20
        'License :: OSI Approved :: MIT License',
21
        'Operating System :: OS Independent',
22
    ),
23
)
24