summaryrefslogtreecommitdiff
path: root/setup.py
blob: d871b5c2b8ef6f9a95355d0b0cdc64a1e748bf04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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',
            ],
        },
)