From 03df016b6c60de07083cd2b47d7095786bbc80b0 Mon Sep 17 00:00:00 2001 From: Alexander Skorikov Date: Fri, 13 Sep 2024 11:31:30 +0200 Subject: [PATCH] Normalize to single quotes --- setup.py | 50 +++++++++++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/setup.py b/setup.py index a7423b0..340919c 100755 --- a/setup.py +++ b/setup.py @@ -1,45 +1,45 @@ from setuptools import setup, find_packages -with open("README.md") as readme_file: +with open('README.md') as readme_file: readme = readme_file.read() draw_requirements = [ - "networkx", - "pygraphviz" + 'networkx', + 'pygraphviz' ] mesh_requirements = [ - "numpy-stl" + 'numpy-stl' ] dev_requirements = [ - "sphinx", - "sphinx_rtd_theme", - "myst-parser" + 'sphinx', + 'sphinx_rtd_theme', + 'myst-parser' ] setup( - author="Alex Kostenko", - description="CT data pre- and post-processing tools, simulation of spectral data, and batch-processing of large number of datasets", + author='Alex Kostenko', + description='CT data pre- and post-processing tools, simulation of spectral data, and batch-processing of large number of datasets', install_requires=[ - "numpy", - "tqdm", - "simpleitk", - "scipy", - "scikit-image", - "flexdata", - "flextomo" + 'numpy', + 'tqdm', + 'simpleitk', + 'scipy', + 'scikit-image', + 'flexdata', + 'flextomo' ], - license="GNU General Public License v3", + license='GNU General Public License v3', long_description=readme, - long_description_content_type="text/markdown", - name="flexcalc", - packages=find_packages(include=["flexcalc"]), + long_description_content_type='text/markdown', + name='flexcalc', + packages=find_packages(include=['flexcalc']), extras_require={ - "dev": dev_requirements, - "draw": draw_requirements, - "mesh": mesh_requirements + 'dev': dev_requirements, + 'draw': draw_requirements, + 'mesh': mesh_requirements }, - url="https://github.com/cicwi/flexcalc", - version="1.0.0", + url='https://github.com/cicwi/flexcalc', + version='1.0.0', )