summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile8
-rw-r--r--bibtool/cli.py5
-rw-r--r--setup.py29
3 files changed, 40 insertions, 2 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..a56e3f4
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,8 @@
+FILES := $(wildcard bibtool/*.py)
+
+.PHONY: all checkstyle
+
+all: checkstyle
+
+checkstyle: $(FILES)
+ flake8 $^
diff --git a/bibtool/cli.py b/bibtool/cli.py
index 3356d16..74855b9 100644
--- a/bibtool/cli.py
+++ b/bibtool/cli.py
@@ -37,7 +37,8 @@ def _import(filename, directory):
if edited_data:
bibtex_data = bibtexparser.loads(edited_data)
if len(bibtex_data.entries) != 1:
- raise Exception('The edited data must contain exactly one Bibtex entry.')
+ raise Exception('The edited data must contain exactly one'
+ 'Bibtex entry.')
entry = bibtex_data.entries[0]
click.confirm('Add {} to the repository?'.format(entry['ID']),
@@ -46,7 +47,7 @@ def _import(filename, directory):
bibfilename = os.path.join(directory, entry['ID'] + '.bib')
outfileext = os.path.splitext(filename)[1]
outfilename = os.path.join(directory, entry['ID'] + outfileext)
-
+
if os.path.exists(bibfilename) or os.path.exists(outfilename):
click.confirm('There is already a document with this ID in the '
'repository. Continue anyway?', abort=True)
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..d871b5c
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,29 @@
+# Copyright (C) 2018 Robin Krahl <robin.krahl@ireas.org>
+# SPDX-License-Identifier: MIT
+
+import setuptools
+
+
+setuptools.setup(
+ name='bibtool',
+ version='0.0.1',
+ description='bibliography management tool',
+ author='Robin Krahl',
+ author_email='robin.krahl@ireas.org',
+ license='MIT',
+ classifiers=[
+ 'Development Status :: 3 - Alpha',
+ 'License :: OSI Approvied :: MIT License',
+ 'Programming Language :: Python :: 3',
+ ],
+ packages=['bibtool'],
+ install_requires=['bibtexparser', 'click', 'PyPDF2'],
+ extras_require={
+ 'checkstyle': ['flake8'],
+ },
+ entry_points={
+ 'console_scripts': [
+ 'bibtool=bibtool.cli:cli',
+ ],
+ },
+)