-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reformatted remaining files with black 23.12.1
- Loading branch information
1 parent
1cd5bd6
commit 16961b8
Showing
2 changed files
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ | |
|
||
from .BioLogic import MPRfile, MPTfile | ||
|
||
__all__ = ['MPRfile', 'MPTfile'] | ||
__all__ = ["MPRfile", "MPTfile"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,35 +7,35 @@ | |
|
||
from setuptools import setup | ||
|
||
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f: | ||
with open(os.path.join(os.path.dirname(__file__), "README.md")) as f: | ||
readme = f.read() | ||
|
||
setup( | ||
name='galvani', | ||
version='0.2.1', | ||
description='Open and process battery charger log data files', | ||
name="galvani", | ||
version="0.2.1", | ||
description="Open and process battery charger log data files", | ||
long_description=readme, | ||
long_description_content_type="text/markdown", | ||
url='https://github.com/echemdata/galvani', | ||
author='Chris Kerr', | ||
author_email='[email protected]', | ||
license='GPLv3+', | ||
url="https://github.com/echemdata/galvani", | ||
author="Chris Kerr", | ||
author_email="[email protected]", | ||
license="GPLv3+", | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3 :: Only', | ||
'Topic :: Scientific/Engineering :: Chemistry', | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Topic :: Scientific/Engineering :: Chemistry", | ||
], | ||
packages=['galvani'], | ||
packages=["galvani"], | ||
entry_points={ | ||
'console_scripts': [ | ||
'res2sqlite = galvani.res2sqlite:main', | ||
"console_scripts": [ | ||
"res2sqlite = galvani.res2sqlite:main", | ||
], | ||
}, | ||
python_requires='>=3.6', | ||
install_requires=['numpy'], | ||
tests_require=['pytest'], | ||
python_requires=">=3.6", | ||
install_requires=["numpy"], | ||
tests_require=["pytest"], | ||
) |