2020-03-21 08:20:49 +01:00
|
|
|
#!/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"],
|
2020-03-21 08:20:49 +01:00
|
|
|
)
|