From 9817337dbfbd0db0740ce5371df325b5010d1e27 Mon Sep 17 00:00:00 2001 From: Nicholas Bollweg Date: Wed, 24 Feb 2021 10:51:30 -0500 Subject: [PATCH 1/2] add include_package_data to ensure distributions contain LICENSE --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index d1c9eeb..afd12d1 100644 --- a/setup.py +++ b/setup.py @@ -47,4 +47,5 @@ "Bug Reports": "https://github.com/hbmartin/graphviz2drawio/issues", "Source": "https://github.com/hbmartin/graphviz2drawio/", }, + include_package_data=True, ) From 0e0b539dd0b76744a46d80a23c4fe984c9c5fd19 Mon Sep 17 00:00:00 2001 From: Nicholas Bollweg Date: Wed, 24 Feb 2021 10:52:48 -0500 Subject: [PATCH 2/2] add python_requires --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index afd12d1..4130b17 100644 --- a/setup.py +++ b/setup.py @@ -38,6 +38,7 @@ license="GPLv3", keywords="graphviz graph agraph dot convert conversion draw drawio mxgraph xml", packages=find_packages(exclude=["contrib", "docs", "tests"]), + python_requires=">=3.5", install_requires=["pygraphviz", "raven", "svg.path"], tests_require=["pytest"], entry_points={