Skip to content

Commit

Permalink
Fix version number
Browse files Browse the repository at this point in the history
  • Loading branch information
devmessias committed Jul 16, 2020
1 parent c332bd3 commit dea16b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from setuptools import setup, find_packages

readme = open('README','r')
readme = open('README', 'r')
README_TEXT = readme.read()
readme.close()

setup(
name="doi2bib",
version="0.4.0",
packages=find_packages(exclude=["build",]),
packages=find_packages(exclude=["build", ]),
scripts=["doi2bib/bin/doi2bib"],
long_description=README_TEXT,
install_requires=["requests", "future", "bibtexparser"],
Expand All @@ -16,7 +16,7 @@
description="Generate a bibtex given a doi",
author="Bruno Messias",
author_email="[email protected]",
download_url="https://github.com/bibcure/doi2bib/archive/0.3.0.tar.gz",
download_url="https://github.com/bibcure/doi2bib/archive/0.4.0.tar.gz",
keywords=["bibtex", "science", "scientific-journals"],

classifiers=[
Expand Down

0 comments on commit dea16b4

Please sign in to comment.