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.

battdeg.version   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 68
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 38
dl 0
loc 68
rs 10
c 0
b 0
f 0
1
from os.path import join as pjoin
2
3
# Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z"
4
_version_major = 0
5
_version_minor = 1
6
_version_micro = '4'  # use '' for first of series, number for 1 and above
7
_version_extra = 'dev'
8
# _version_extra = ''  # Uncomment this for full releases
9
10
# Construct full version string from these.
11
_ver = [_version_major, _version_minor]
12
if _version_micro:
13
    _ver.append(_version_micro)
14
if _version_extra:
15
    _ver.append(_version_extra)
16
17
__version__ = '.'.join(map(str, _ver))
18
19
CLASSIFIERS = ["Development Status :: 3 - Alpha",
20
               "Environment :: Console",
21
               "Intended Audience :: Science/Research",
22
               "License :: OSI Approved :: MIT License",
23
               "Operating System :: OS Independent",
24
               "Programming Language :: Python",
25
               "Topic :: Scientific/Engineering"]
26
27
# Description should be a one-liner:
28
description = "battdeg : predict battery degradation using machine learning"
29
# Long description will go up on the pypi page
30
long_description = """
31
32
BattDeg
33
========
34
BattDeg is a template project for prediction degrdataion of lithium ion battery 
35
using machine learning.
36
37
.. _README: https://github.com/chintanp/BattDeg/blob/master/README.md
38
39
License
40
=======
41
``battdeg`` is licensed under the terms of the MIT license. See the file
42
"LICENSE" for information on the history of this software, terms & conditions
43
for usage, and a DISCLAIMER OF ALL WARRANTIES.
44
45
All trademarks referenced herein are property of their respective holders.
46
47
Copyright (c) 2019--, Shrilakshmi Bonageri, Ge Gu, Guoyao Chen, Chintan Pathak,
48
University of Washington
49
"""
50
51
NAME = "battdeg"
52
MAINTAINER = "Chintan Pathak"
53
MAINTAINER_EMAIL = "[email protected]"
54
DESCRIPTION = description
55
LONG_DESCRIPTION = long_description
56
URL = "http://github.com/chintan/battdeg"
57
DOWNLOAD_URL = ""
58
LICENSE = "MIT"
59
AUTHOR = "Shrilakshmi Bonageri, Ge Gu, Guoyao Chen, Chintan Pathak"
60
AUTHOR_EMAIL = ""
61
PLATFORMS = "OS Independent"
62
MAJOR = _version_major
63
MINOR = _version_minor
64
MICRO = _version_micro
65
VERSION = __version__
66
PACKAGE_DATA = {'battdeg': [pjoin('data', '*')]}
67
REQUIRES = ["pandas", "numpy", "sklearn", "keras", "tensorflow", "pytest"]
68