fck/setup.py

13 lines
297 B
Python
Raw Normal View History

#!/usr/bin/env python3
from setuptools import setup
setup(
2024-11-23 23:33:32 +01:00
name="fck",
version="0.1",
description="A simple checksum utility that just works.",
url="https://git.ophanim.de/derped/fck",
python_requires=">3.8",
packages=["fck", "fck/cktype"],
scripts=["scripts/fck"],
)