forked from bibcure/bibcure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.1 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
from setuptools import setup, find_packages
readme = open('README', 'r')
README_TEXT = readme.read()
readme.close()
setup(
name="bibcure",
version="0.3.0",
packages=find_packages(exclude=["build", ]),
scripts=["bibcure/bin/bibcure"],
long_description=README_TEXT,
install_requires=["bibtexparser", "future",
"doi2bib", "title2bib", "arxivcheck"],
include_package_data=True,
package_data={
"data": ["data/db_abbrev.json"]
},
license="AGPLv3",
description=" Helps you to have a better bibtex file",
author="Bruno Messias",
author_email="[email protected]",
download_url="https://github.com/bibcure/bibcure/archive/0.3.0.tar.gz",
keywords=["bibtex", "arxiv", "doi", "abbreviate", "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/bibcure"
)