Skip to content

Commit

Permalink
remove "Version" from field version in setup.py
Browse files Browse the repository at this point in the history
as it's not a good idea to mix semantics and syntax
the version fields is used to setup the python __version__
which should be follow the python versioning

add Version in --version  output which is for human
  • Loading branch information
bneron committed Mar 14, 2016
1 parent 1526431 commit 6258c4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integron_finder
Original file line number Diff line number Diff line change
Expand Up @@ -1379,7 +1379,7 @@ or define INTEGRON_HOME environment variable.""")
version = "NOT packaged, it should be development version"
else:
version = __version__
version_text = """integron_finder {0}
version_text = """integron_finder version {0}
Python {1}
- open-source GPLv3,
- Jean Cury, Betrand Néron, Eduardo Rocha,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def subst_vars(src, dst, vars):
'matplotlib (>=1.4.2)']

setup(name='integron_finder',
version="Version 1.4",
version="1.4",
description="""Integron Finder aims at detecting integrons in DNA sequences
by finding particular features of the integron:
the attC sites, the integrase
Expand Down

0 comments on commit 6258c4e

Please sign in to comment.