aboutsummaryrefslogtreecommitdiff
path: root/svg-flatten/setup.py
blob: 06e813d0038e6acfe9e25bca63527e0c7dda05b6 (plain)
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
54
55
import subprocess
from setuptools import setup, find_packages
from pathlib import Path
import re
import shutil

def version():
    res = subprocess.run(['git', 'describe', '--tags', '--match', 'v*'], capture_output=True, check=True, text=True)
    version, _, _rest = res.stdout.strip()[1:].partition('-')
    return version

def long_description():
    with open("README.rst") as f:
        return f.read()

setup(
    name="svg-flatten-wasi",
    version=version(),
    author="jaseg",
    author_email="pypi@jaseg.de",
    description="svg-flatten SVG downconverter",
    long_description=long_description(),
    long_description_content_type="text/x-rst",
    license="AGPLv3+",
    python_requires="~=3.7",
    setup_requires=["wheel"],
    install_requires=[
        "importlib_resources; python_version<'3.9'",
        "appdirs~=1.4",
        "wasmtime>=0.28",
        "click >= 4.0"
    ],
    extras_require={
        'resvg-wasi': ['resvg-wasi'],
    },
    packages=["svg_flatten_wasi"],
    package_data={"svg_flatten_wasi": [
        "*.wasm",
    ]},
    entry_points={
        "console_scripts": [
            "wasi-svg-flatten = svg_flatten_wasi:run_svg_flatten",
        ],
    },
    project_urls={
        "Source Code": "https://git.jaseg.de/gerbolyze",
        "Bug Tracker": "https://github.com/jaseg/gerbolyze/issues",
    },
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Environment :: Console',
        "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
        'Topic :: Utilities'
    ],
)