-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
38 lines (36 loc) · 1.03 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
34
35
36
37
38
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="[email protected]",
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"
],
extras_require={
"code": ["black", "flake8", "mypy"],
"test": [
"coverage",
"pytest",
"pytest-cov",
],
"extra": [
],
},
)