forked from bibcure/doi2bib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 966 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
26
27
28
29
30
from setuptools import setup, find_packages
readme = open('README', 'r')
README_TEXT = readme.read()
readme.close()
setup(
name="doi2bib",
version="0.4.0",
packages=find_packages(exclude=["build", ]),
scripts=["doi2bib/bin/doi2bib"],
long_description=README_TEXT,
install_requires=["requests", "future", "bibtexparser"],
include_package_data=True,
license="MIT",
description="Generate a bibtex given a doi",
author="Bruno Messias",
author_email="[email protected]",
download_url="https://github.com/bibcure/doi2bib/archive/0.4.0.tar.gz",
keywords=["bibtex", "science", "scientific-journals"],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Text Processing :: Markup :: LaTeX",
],
url="https://github.com/bibcure/doi2bib"
)