Skip to content

Commit

Permalink
Normalize to single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
askorikov committed Sep 13, 2024
1 parent 95b7fff commit 03df016
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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',
)

0 comments on commit 03df016

Please sign in to comment.