forked from sphinx-contrib/kroki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.08 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.08 KB
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
34
35
36
37
38
39
from setuptools import find_namespace_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="sphinxcontrib-kroki",
version="1.3.0",
author="Martin Hasoň",
author_email="martin.hason@gmail.com",
description="Kroki integration into sphinx",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sphinx-contrib/kroki",
packages=find_namespace_packages(include=["sphinxcontrib.*"]),
classifiers=[
"Framework :: Sphinx :: Extension",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=[
"sphinx",
"requests>=2.4.2",
"pyyaml",
"importlib_metadata; python_version < '3.8'",
],
extras_require={
"code": ["black", "flake8", "mypy"],
"test": [
"coverage",
"pytest",
"pytest-cov",
],
"extra": [
],
},
)