-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
41 lines (38 loc) · 1.47 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
import os
from setuptools import setup, find_packages
def read_file(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='mkdocs-obsidian-interactive-graph-plugin',
description='A MkDocs plugin that generates a obsidian like interactive graph',
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
keywords='mkdocs',
url='https://github.com/daxcore/mkdocs-obsidian-interactive-graph-plugin',
author='daxcore',
author_email='[email protected]',
license='MIT',
python_requires='>=3.6',
use_scm_version=True,
setup_requires=['setuptools_scm'],
install_requires=['mkdocs-material'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
],
packages=find_packages(),
entry_points={
'mkdocs.plugins': [
'obsidian-interactive-graph = obsidian_interactive_graph.plugin:ObsidianInteractiveGraphPlugin'
]
}
)