Move data files; fix way combination.

This commit is contained in:
Sergey Vartanov 2021-09-03 03:37:51 +03:00
parent c53b257aaf
commit 173a553877
10 changed files with 24 additions and 13 deletions

View file

@ -5,7 +5,7 @@ from setuptools import setup
setup(
name="roentgen-map",
version="0.1.1",
version="0.1.2",
packages=["roentgen"],
url="https://github.com/enzet/Roentgen",
project_urls={
@ -26,6 +26,14 @@ setup(
entry_points={
"console_scripts": ["roentgen=roentgen.main:main"],
},
package_data={
"roentgen": [
"icons/icons.svg",
"icons/config.json",
"icons/LICENSE",
"scheme/default.yml",
],
},
python_requires=">=3.9",
install_requires=[
"CairoSVG>=2.5.0",