Skip to content

Commit

Permalink
Format setup.py files
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Jul 20, 2021
1 parent ec08038 commit 040c4a8
Show file tree
Hide file tree
Showing 8 changed files with 372 additions and 298 deletions.
74 changes: 41 additions & 33 deletions reprounzip-docker/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,36 +8,44 @@

with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
setup(name='reprounzip-docker',
version='2.0.0',
py_modules=['reprounzip_docker'],
entry_points={
'reprounzip.unpackers': [
'docker = reprounzip_docker:setup']},
install_requires=[
'reprounzip>=2.0.0,<3.0.0'],
description="Allows the ReproZip unpacker to create Docker containers",
author="Remi Rampin, Fernando Chirigati, Dennis Shasha, Juliana Freire",
author_email='dev@reprozip.org',
maintainer="Remi Rampin",
maintainer_email='remi@rampin.org',
url='https://www.reprozip.org/',
project_urls={
'Homepage': 'https://github.com/ViDA-NYU/reprozip',
'Documentation': 'https://docs.reprozip.org/',
'Examples': 'https://examples.reprozip.org/',
'Say Thanks': 'https://saythanks.io/to/remram44',
'Source': 'https://github.com/ViDA-NYU/reprozip',
'Tracker': 'https://github.com/ViDA-NYU/reprozip/issues',
},
long_description=description,
license='BSD-3-Clause',
keywords=['reprozip', 'reprounzip', 'reproducibility', 'provenance',
'vida', 'nyu', 'docker'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: System :: Archiving'])
setup(
name='reprounzip-docker',
version='2.0.0',
py_modules=['reprounzip_docker'],
entry_points={
'reprounzip.unpackers': [
'docker = reprounzip_docker:setup',
],
},
install_requires=[
'reprounzip>=2.0.0,<3.0.0',
],
description="Allows the ReproZip unpacker to create Docker containers",
author="Remi Rampin, Fernando Chirigati, Dennis Shasha, Juliana Freire",
author_email='dev@reprozip.org',
maintainer="Remi Rampin",
maintainer_email='remi@rampin.org',
url='https://www.reprozip.org/',
project_urls={
'Homepage': 'https://github.com/ViDA-NYU/reprozip',
'Documentation': 'https://docs.reprozip.org/',
'Examples': 'https://examples.reprozip.org/',
'Say Thanks': 'https://saythanks.io/to/remram44',
'Source': 'https://github.com/ViDA-NYU/reprozip',
'Tracker': 'https://github.com/ViDA-NYU/reprozip/issues',
},
long_description=description,
license='BSD-3-Clause',
keywords=[
'reprozip', 'reprounzip', 'reproducibility', 'provenance', 'docker',
'vida', 'nyu',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: System :: Archiving',
],
)
75 changes: 41 additions & 34 deletions reprounzip-qt/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,37 +8,44 @@

with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
setup(name='reprounzip-qt',
version='2.0.0',
packages=['reprounzip_qt', 'reprounzip_qt.gui'],
package_data={'reprounzip_qt': ['icon.png']},
entry_points={
'gui_scripts': [
'reprounzip-qt = reprounzip_qt.main:main']},
install_requires=['PyYAML', 'qtpy', 'reprounzip>=2.0.0,<3.0.0'],
description="Graphical user interface for reprounzip, using Qt",
author="Remi Rampin, Fernando Chirigati, Dennis Shasha, Juliana Freire",
author_email='dev@reprozip.org',
maintainer="Remi Rampin",
maintainer_email='remi@rampin.org',
url='https://www.reprozip.org/',
project_urls={
'Homepage': 'https://github.com/ViDA-NYU/reprozip',
'Documentation': 'https://docs.reprozip.org/',
'Examples': 'https://examples.reprozip.org/',
'Say Thanks': 'https://saythanks.io/to/remram44',
'Source': 'https://github.com/ViDA-NYU/reprozip',
'Tracker': 'https://github.com/ViDA-NYU/reprozip/issues',
},
long_description=description,
license='BSD-3-Clause',
keywords=['reprozip', 'reprounzip', 'reproducibility', 'provenance',
'vida', 'nyu', 'gui'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: System :: Archiving'])
setup(
name='reprounzip-qt',
version='2.0.0',
packages=['reprounzip_qt', 'reprounzip_qt.gui'],
package_data={'reprounzip_qt': ['icon.png']},
entry_points={
'gui_scripts': [
'reprounzip-qt = reprounzip_qt.main:main',
],
},
install_requires=['PyYAML', 'qtpy', 'reprounzip>=2.0.0,<3.0.0'],
description="Graphical user interface for reprounzip, using Qt",
author="Remi Rampin, Fernando Chirigati, Dennis Shasha, Juliana Freire",
author_email='dev@reprozip.org',
maintainer="Remi Rampin",
maintainer_email='remi@rampin.org',
url='https://www.reprozip.org/',
project_urls={
'Homepage': 'https://github.com/ViDA-NYU/reprozip',
'Documentation': 'https://docs.reprozip.org/',
'Examples': 'https://examples.reprozip.org/',
'Say Thanks': 'https://saythanks.io/to/remram44',
'Source': 'https://github.com/ViDA-NYU/reprozip',
'Tracker': 'https://github.com/ViDA-NYU/reprozip/issues',
},
long_description=description,
license='BSD-3-Clause',
keywords=[
'reprozip', 'reprounzip', 'reproducibility', 'provenance', 'gui',
'vida', 'nyu',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: System :: Archiving',
],
)
76 changes: 42 additions & 34 deletions reprounzip-vagrant/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,37 +8,45 @@

with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
setup(name='reprounzip-vagrant',
version='2.0.0',
packages=['reprounzip_vagrant'],
entry_points={
'reprounzip.unpackers': [
'vagrant = reprounzip_vagrant:setup']},
install_requires=[
'reprounzip>=2.0.0,<3.0.0',
'paramiko'],
description="Allows the ReproZip unpacker to create virtual machines",
author="Remi Rampin, Fernando Chirigati, Dennis Shasha, Juliana Freire",
author_email='dev@reprozip.org',
maintainer="Remi Rampin",
maintainer_email='remi@rampin.org',
url='https://www.reprozip.org/',
project_urls={
'Homepage': 'https://github.com/ViDA-NYU/reprozip',
'Documentation': 'https://docs.reprozip.org/',
'Examples': 'https://examples.reprozip.org/',
'Say Thanks': 'https://saythanks.io/to/remram44',
'Source': 'https://github.com/ViDA-NYU/reprozip',
'Tracker': 'https://github.com/ViDA-NYU/reprozip/issues',
},
long_description=description,
license='BSD-3-Clause',
keywords=['reprozip', 'reprounzip', 'reproducibility', 'provenance',
'vida', 'nyu', 'vagrant'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: System :: Archiving'])
setup(
name='reprounzip-vagrant',
version='2.0.0',
packages=['reprounzip_vagrant'],
entry_points={
'reprounzip.unpackers': [
'vagrant = reprounzip_vagrant:setup',
],
},
install_requires=[
'reprounzip>=2.0.0,<3.0.0',
'paramiko',
],
description="Allows the ReproZip unpacker to create virtual machines",
author="Remi Rampin, Fernando Chirigati, Dennis Shasha, Juliana Freire",
author_email='dev@reprozip.org',
maintainer="Remi Rampin",
maintainer_email='remi@rampin.org',
url='https://www.reprozip.org/',
project_urls={
'Homepage': 'https://github.com/ViDA-NYU/reprozip',
'Documentation': 'https://docs.reprozip.org/',
'Examples': 'https://examples.reprozip.org/',
'Say Thanks': 'https://saythanks.io/to/remram44',
'Source': 'https://github.com/ViDA-NYU/reprozip',
'Tracker': 'https://github.com/ViDA-NYU/reprozip/issues',
},
long_description=description,
license='BSD-3-Clause',
keywords=[
'reprozip', 'reprounzip', 'reproducibility', 'provenance', 'vagrant',
'vida', 'nyu',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: System :: Archiving',
],
)
76 changes: 42 additions & 34 deletions reprounzip-vistrails/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,37 +9,45 @@
with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
req = [
'reprounzip>=2.0.0,<3.0.0']
setup(name='reprounzip-vistrails',
version='2.0.0',
py_modules=['reprounzip_vistrails'],
entry_points={
'reprounzip.plugins': [
'vistrails = reprounzip_vistrails:setup_vistrails']},
install_requires=req,
description="Integrates the ReproZip unpacker with the VisTrails "
"workflow management system",
author="Remi Rampin, Fernando Chirigati, Dennis Shasha, Juliana Freire",
author_email='dev@reprozip.org',
maintainer="Remi Rampin",
maintainer_email='remi@rampin.org',
url='https://www.reprozip.org/',
project_urls={
'Homepage': 'https://github.com/ViDA-NYU/reprozip',
'Documentation': 'https://docs.reprozip.org/',
'Examples': 'https://examples.reprozip.org/',
'Say Thanks': 'https://saythanks.io/to/remram44',
'Source': 'https://github.com/ViDA-NYU/reprozip',
'Tracker': 'https://github.com/ViDA-NYU/reprozip/issues',
},
long_description=description,
license='BSD-3-Clause',
keywords=['reprozip', 'reprounzip', 'reproducibility', 'provenance',
'vida', 'nyu', 'vistrails'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: System :: Archiving'])
'reprounzip>=2.0.0,<3.0.0',
]
setup(
name='reprounzip-vistrails',
version='2.0.0',
py_modules=['reprounzip_vistrails'],
entry_points={
'reprounzip.plugins': [
'vistrails = reprounzip_vistrails:setup_vistrails',
],
},
install_requires=req,
description="Integrates the ReproZip unpacker with the VisTrails "
"workflow management system",
author="Remi Rampin, Fernando Chirigati, Dennis Shasha, Juliana Freire",
author_email='dev@reprozip.org',
maintainer="Remi Rampin",
maintainer_email='remi@rampin.org',
url='https://www.reprozip.org/',
project_urls={
'Homepage': 'https://github.com/ViDA-NYU/reprozip',
'Documentation': 'https://docs.reprozip.org/',
'Examples': 'https://examples.reprozip.org/',
'Say Thanks': 'https://saythanks.io/to/remram44',
'Source': 'https://github.com/ViDA-NYU/reprozip',
'Tracker': 'https://github.com/ViDA-NYU/reprozip/issues',
},
long_description=description,
license='BSD-3-Clause',
keywords=[
'reprozip', 'reprounzip', 'reproducibility', 'provenance', 'vistrails',
'vida', 'nyu',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: System :: Archiving',
],
)

0 comments on commit 040c4a8

Please sign in to comment.