Skip to content

Commit

Permalink
Update names of modules: doitobib -> doi2bib; titletobib -> title2bib
Browse files Browse the repository at this point in the history
  • Loading branch information
devmessias committed Aug 21, 2017
1 parent cd258d1 commit 4efeaf6
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ __pycache__/
# Distribution / packaging
.Python
env/
sci2bib-eggs/
sci2pdf-eggs/
eggs/
sci2bib.egg-info/
sci2pdf.egg-info/
dist/
build/
downloads/
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include bibcure README
include sci2pdf README
2 changes: 1 addition & 1 deletion requeriments.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ bibtexparser
future
requests
lxml
titletobib
title2bib
Binary file removed sci2pdf-10.1063_1.3149495.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion sci2pdf/libgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import requests
from lxml import html
from multiprocessing.dummy import Pool as ThreadPool
from titletobib.crossref import get_bib_from_title
from title2bib.crossref import get_bib_from_title
import bibtexparser

headers = {
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

setup(
name="sci2pdf",
version="0.0.2",
version="0.0.3",
packages = find_packages(exclude=["build",]),
scripts=["sci2pdf/bin/sci2pdf"],
long_description = README_TEXT,
install_requires = ["bibtexparser",
"titletobib",
"title2bib",
"future",
"requests",
"lxml"],
Expand All @@ -20,7 +20,7 @@
description="Downloads pdfs via a DOI number, article title or a bibtex file, sci-hub",
author="Bruno Messias",
author_email="[email protected]",
download_url="https://github.com/bibcure/sci2pdf/archive/0.0.2.tar.gz",
download_url="https://github.com/bibcure/sci2pdf/archive/0.0.3.tar.gz",
keywords=["bibtex", "sci-hub", "libgen", "doi", "science","scientific-journals"],

classifiers=[
Expand Down

0 comments on commit 4efeaf6

Please sign in to comment.