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.
Passed
Push — master ( 453ef8...dde733 )
by
unknown
02:27
created

setup   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 48
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 26
dl 0
loc 48
rs 10
c 0
b 0
f 0
1
"""A setuptools based setup module.
2
See:
3
https://packaging.python.org/en/latest/distributing.html
4
https://github.com/pypa/sampleproject
5
"""
6
7
# prefer setuptools over distutils
8
from setuptools import setup, find_packages
9
from os import path
10
11
here = path.abspath(path.dirname(__file__))
12
13
# Get the long description from the README file
14
with open (path.join(here, 'README.md'), encoding = 'utf-8') as f:
15
    long_description = f.read()
16
17
setup(
18
    # install this project using:
19
    # $ pip install voltcycle
20
    #
21
    # PyPI URL:
22
    name='voltcycle',
23
24
    # Versions should comply with PEP 440:
25
    # https://www.python.org/dev/peps/pep-0440/
26
    version='1.0', # Required
27
28
    # A one-line description of the project
29
    description='Automated batch cyclic voltammetry data analysis for electrochemical reversibility',
30
    url='https://github.com/sabiharustam/voltcycle',
31
    author='voltcycle',
32
    packages=find_packages(),
33
34
35
    install_requires=[
36
       'pandas==0.23.4',
37
       'numpy==1.15.4',
38
       'PeakUtils==1.3.2',
39
       'plotly==3.6.1',
40
       'dash==0.39.0',
41
       'dash-core-components==0.44.0',
42
       'dash-html-components==0.14.0',
43
       'dash-renderer==0.20.0',
44
       'dash-resumable-upload==0.0.3',
45
       'dash-table==3.6.0',
46
       'dash-table-experiments==0.6.0',
47
       'dashtable==1.4.5',
48
    ]
49
)
50