-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
53 lines (48 loc) · 2.15 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
43
44
45
46
47
48
49
50
51
52
53
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
with open(path.join(here, "graphviz2drawio", "version.py")) as fp:
exec(fp.read())
setup(
name="graphviz2drawio",
version=__version__, # noqa: F821
description="Convert graphviz (dot) files to draw.io / lucid (mxGraph) format. "
"Beautiful and editable graphs in your favorite editor.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hbmartin/graphviz2drawio/",
author="Harold Martin",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Visualization",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
license="GPLv3",
keywords="graphviz graph agraph dot convert conversion draw drawio mxgraph maxgraph",
packages=find_packages(exclude=["doc", "test"]),
python_requires=">=3.10",
install_requires=["puremagic", "pygraphviz", "svg.path"],
tests_require=["pytest"],
entry_points={"console_scripts": ["graphviz2drawio=graphviz2drawio.__main__:main"]},
project_urls={
"Bug Reports": "https://github.com/hbmartin/graphviz2drawio/issues",
"Source": "https://github.com/hbmartin/graphviz2drawio/",
},
include_package_data=True,
package_data={"graphviz2drawio": ["py.typed"]},
)