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
EnMAP
GFZ_Tools_EnMAP_BOX
EnPT
Commits
fd8d5c8f
Commit
fd8d5c8f
authored
Apr 02, 2020
by
Daniel Scheffler
Browse files
Fixed invalid syntax for multiple authors and email addresses in setup.py.
Signed-off-by:
Daniel Scheffler
<
danschef@gfz-potsdam.de
>
parent
69507c67
Pipeline
#8063
failed with stages
in 49 minutes and 29 seconds
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
HISTORY.rst
View file @
fd8d5c8f
...
...
@@ -2,6 +2,13 @@
History
=======
0.11.1 (2020-04-02)
-------------------
* Fixed invalid syntax for multiple authors and email addresses in setup.py.
0.11.0 (2020-04-02)
-------------------
...
...
@@ -16,7 +23,6 @@ New features / improvements:
* Revised setup.py for a proper PyPI upload.
* Removed installation of 'icu=58.*' from installation.rst.
Bug fixes:
* Fixed issue 45 "Band central wavelength positions of L2A product cannot be read by ENVI."
...
...
enpt/version.py
View file @
fd8d5c8f
...
...
@@ -27,6 +27,6 @@
# You should have received a copy of the GNU Lesser General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
__version__
=
'0.11.
0
'
__versionalias__
=
'20200402.0
1
'
__version__
=
'0.11.
1
'
__versionalias__
=
'20200402.0
2
'
__author__
=
'Daniel Scheffler'
setup.py
View file @
fd8d5c8f
...
...
@@ -54,9 +54,8 @@ setup_requirements = ['setuptools-git'] # needed for package_data version contr
test_requirements
=
[
'coverage'
,
'nose'
,
'nose-htmloutput'
,
'rednose'
]
setup
(
author
=
[
"Karl Segl"
,
"Daniel Scheffler"
,
"Niklas Bohn"
,
"Stéphane Guillaso"
],
author_email
=
[
'segl@gfz-potsdam.de'
,
'danschef@gfz-potsdam.de'
,
'nbohn@gfz-potsdam.de'
,
'stephane.guillaso@gfz-potsdam.de'
],
author
=
"Karl Segl, Daniel Scheffler, Niklas Bohn, Stéphane Guillaso"
,
author_email
=
"segl@gfz-potsdam.de, danschef@gfz-potsdam.de, nbohn@gfz-potsdam.de, stephane.guillaso@gfz-potsdam.de"
,
classifiers
=
[
'Development Status :: 4 - Beta'
,
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
,
...
...
@@ -73,8 +72,7 @@ setup(
license
=
"GNU General Public License v3"
,
long_description
=
readme
+
'
\n\n
'
+
history
,
name
=
'enpt'
,
package_dir
=
{
'enpt'
:
'enpt'
},
package_dir
=
{
'enpt'
:
'enpt'
},
# NOTE: if the 'package_data' files are not under CVS or Subversion version control, we need setuptools-git here,
# otherwise they are not included in the PyPi upload content
package_data
=
{
"enpt"
:
[
"resources/**/**/*"
]},
...
...
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