-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (42 loc) · 1.31 KB
/
setup.py
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
with open('Readme.md') as f:
txt = f.read()
setup(name='kbib',
version='0.2.0',
description='A command line tool to get bibtex information from DOIs and PDFs',
long_description=txt,
long_description_content_type='text/markdown',
author='Koushik Naskar',
author_email='[email protected]',
license="MIT",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: 3.6',
'Topic :: System :: Shells'
],
keywords='bibtex references doi crossref',
project_urls={'Source Code': 'https://github.com/Koushikphy/kbib'},
zip_safe=True,
python_requires='>=3.6',
packages=find_packages(),
install_requires=[
'bibtexparser>=1.4.0',
'rich>=12.6.0',
'jellyfish>=1.1.0',
'requests_cache'
],
extras_require = {
'pdf': ['pdf2doi']
},
entry_points={
'console_scripts': [
'kbib = kbib.parseRefs:main',
],
}
)