dela 0.0.6

A task runner that delegates the work to other tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from setuptools import setup

setup(
    name="assets_py",
    version="1.0.0",
    packages=["assets_py"],
    entry_points={
        "console_scripts": [
            "uv-build=assets_py.main:main_build",
            "uv-test=assets_py.main:main_test",
        ],
    },
    python_requires=">=3.12",
)