-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
25 lines (22 loc) · 943 Bytes
/
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
import setuptools
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'),encoding ='unicode_escape') as f:
long_description = f.read()
with open("requirements.txt") as f:
required_packages = f.read().splitlines()
setuptools.setup(name='pdf2bib',
version='1.2',
description='A python library/command-line tool to quickly and automatically generate BibTeX data starting from the pdf file of a scientific publication.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/MicheleCotrufo/pdf2bib',
author='Michele Cotrufo',
author_email='michele.cotrufo@gmail.com',
license='MIT',
entry_points = {
'console_scripts': ["pdf2bib = pdf2bib.main:main"],
},
packages=['pdf2bib'],
install_requires= required_packages,
zip_safe=False)