Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
sec23
korte
pymagglobal
Commits
21d1d653
Commit
21d1d653
authored
Aug 10, 2021
by
Maximilian Schanner
Browse files
Add gui entrypoint.
parent
68c42e86
Changes
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
21d1d653
...
...
@@ -44,8 +44,8 @@ with open("README.md", "r") as fh:
name
=
'pymagglobal'
version
=
get_version
(
'pymagglobal/__init__.py'
)
description
=
'''python interface for global geomagnetic field models '''
copyright
=
f
'2020 Helmholtz Centre Potsdam GFZ, '
\
+
f
'German Research Centre for Geosciences, Potsdam, Germany'
copyright
=
'2020 Helmholtz Centre Potsdam GFZ, '
\
+
'German Research Centre for Geosciences, Potsdam, Germany'
setuptools
.
setup
(
...
...
@@ -66,6 +66,8 @@ setuptools.setup(
extras_require
=
{
'tests'
:
[
'orthopoly>=0.9'
,
'packaging'
]},
package_data
=
{
'pymagglobal'
:
[
'dat/*'
]},
include_package_data
=
True
,
entry_points
=
{
'console_scripts'
:
[
f
'pymagglobal = '
f
'pymagglobal.__main__:main'
]},
entry_points
=
{
'console_scripts'
:
[
'pymagglobal = '
'pymagglobal.__main__:main'
,
'pymagglobal-gui = '
'pymagglobal.GUI:main'
]},
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment