-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
31 lines (29 loc) · 975 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
31
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="mkdocs-bibtex",
use_scm_version=True,
setup_requires=["setuptools_scm"],
description="An MkDocs plugin that enables managing citations with BibTex",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="mkdocs python markdown bibtex",
url="https://github.com/shyamd/mkdocs-bibtex/",
author="Shyam Dwaraknath",
author_email="[email protected]",
license="BSD-3-Clause-LBNL",
python_requires=">=3.6",
install_requires=[
"mkdocs>=1",
"pybtex>=0.22",
"pypandoc>=1.5",
"requests>=2.8.1",
"validators>=0.19.0",
"setuptools>=68.0.0"
],
tests_require=["pytest"],
packages=find_packages("src"),
package_dir={"": "src"},
entry_points={"mkdocs.plugins": ["bibtex = mkdocs_bibtex.plugin:BibTexPlugin"]},
)