Skip to content

Commit

Permalink
Add versioneer
Browse files Browse the repository at this point in the history
  • Loading branch information
wvangeit committed Apr 27, 2017
1 parent c2eaf74 commit 0a428d5
Show file tree
Hide file tree
Showing 3 changed files with 1,874 additions and 1 deletion.
12 changes: 12 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.

[versioneer]
VCS = git
style = pep440-minor
versionfile_source = bluepymm/_version.py
versionfile_build = bluepymm/_version.py
tag_prefix =
parentdir_prefix =
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@

import setuptools

import versioneer

setuptools.setup(
name="bluepymm",
version='0.2',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
install_requires=['sh', 'bluepyopt', 'matplotlib'],
packages=['bluepymm', 'bluepymm/megate'],
author="BlueBrain Project, EPFL",
Expand Down
Loading

0 comments on commit 0a428d5

Please sign in to comment.