-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
24 lines (22 loc) · 947 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
from setuptools import setup, find_packages
setup(
name="arxivcheck",
version="0.3.2",
packages=find_packages(exclude=["build", ]),
scripts=["arxivcheck/bin/arxivcheck"],
install_requires=["future","unidecode", "feedparser", "bibtexparser", "doi2bib"],
include_package_data=True,
license="AGPLv3",
description="Generate a bibtex given a arxiv id or title, check if published",
author="Bruno Messias",
author_email="[email protected]",
download_url="https://github.com/bibcure/arxivcheck/archive/0.3.2.tar.gz",
keywords=["bibtex", "arxiv", "science", "scientific-journals"],
classifiers=[
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Text Processing :: Markup :: LaTeX",
],
url="https://github.com/bibcure/arxivcheck"
)