-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (40 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
34
35
36
37
38
39
40
41
42
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="mkdocstrings-vba",
author="Rudolf Byker",
author_email="[email protected]",
description="MkDocstrings VBA handler",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AutoActuary/mkdocstrings-vba",
packages=setuptools.find_namespace_packages(
include=["mkdocstrings_handlers.*"],
exclude=["test"],
),
classifiers=[
"Programming Language :: Python :: 3",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
use_scm_version={
"write_to": "mkdocstrings_handlers/vba/version.py",
},
setup_requires=[
"setuptools_scm",
],
install_requires=[
"mkdocstrings>=0.22,<0.23",
"griffe>=0.34,<0.35",
"mkdocs-material>=9.2,<10",
],
include_package_data=True,
package_data={
"": [
"py.typed",
"templates",
],
},
)