Skip to content

Commit

Permalink
Update setup.py to follow the style of other flexbox packages
Browse files Browse the repository at this point in the history
  • Loading branch information
askorikov committed Sep 13, 2024
1 parent 48fc9a8 commit 2729a74
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@
readme = readme_file.read()

setup(
author="Alex Kostenko",
description="ASTRA-based cone beam tomography reconstructions.",
install_requires= [
"numpy",
"astra-toolbox>1.9.0",
"tqdm",
"scipy",
"flexdata"
],
license="GNU General Public License v3",
long_description=readme,
long_description_content_type="text/markdown",
name='flextomo',
version='1.0.0',
description='ASTRA-based cone beam tomography reconstructions',
url='https://github.com/cicwi/flextomo',
long_description=readme,
long_description_content_type='text/markdown',
author='Alex Kostenko',
license='GNU General Public License v3',
packages=find_packages(include=['flextomo']),
install_requires= [
'numpy',
'astra-toolbox>1.9.0',
'tqdm',
'scipy',
'flexdata'
],
extras_require={
'dev': [
'sphinx',
'sphinx_rtd_theme',
'myst-parser',
]
},
url='https://github.com/cicwi/flextomo',
version='1.0.0',
}
)

0 comments on commit 2729a74

Please sign in to comment.