Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Update setup.py to release v0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
pafonta committed May 30, 2018
1 parent 63b45a8 commit 896f3f4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

from setuptools import setup

VERSION = "0.4.2"
NEUROCURATOR_VERSION = "0.4.3"
NAT_MINIMUM_VERSION = "0.4.2"

HERE = os.path.abspath(os.path.dirname(__file__))

Expand All @@ -16,7 +17,7 @@

setup(
name="neurocurator",
version=VERSION,
version=NEUROCURATOR_VERSION,
description="Application to perform curation of neuroscientific literature.",
long_description=long_description,
keywords="neuroscience annotation curation literature modeling parameters",
Expand All @@ -31,7 +32,7 @@
packages=["neurocurator"],
python_requires="~=3.4.0", # Until #6 is solved.
install_requires=[
"nat==" + VERSION,
"nat>=" + NAT_MINIMUM_VERSION,
"pyside",
"numpy",
"pandas",
Expand Down

0 comments on commit 896f3f4

Please sign in to comment.