Skip to content
Snippets Groups Projects
Commit e837ef3f authored by Nils Brüggemann's avatar Nils Brüggemann Committed by Fraser William Goldsworth
Browse files

setup.py: Added entry points for some scripts like pyic_fig etc.

parent 82ba66ba
No related branches found
No related tags found
No related merge requests found
......@@ -11,20 +11,28 @@ with open("requirements.txt") as f:
install_requires = f.read().strip().split("\n")
setup(
name='pyicon-diagnostics',
version=version,
description='Diagnostic python software package for ICON',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://gitlab.dkrz.de/m300602/pyicon',
author='The pyicon development team',
author_email='nils.brueggemann@mpimet.mpg.de',
install_requires=install_requires,
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
setup_requires=['setuptools'],
name='pyicon-diagnostics',
version=version,
description='Diagnostic python software package for ICON',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://gitlab.dkrz.de/m300602/pyicon',
author='The pyicon development team',
author_email='nils.brueggemann@mpimet.mpg.de',
install_requires=install_requires,
packages=find_packages(),
entry_points={
'console_scripts': [
'pyic_intake = tools.pyic_intake:main',
'pyic_fig = tools.pyic_fig:main',
'pyic_sec = tools.pyic_sec:main',
'pyic_anim = tools.pyic_anim:main',
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
setup_requires=['setuptools'],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment