13 lines
297 B
Python
13 lines
297 B
Python
|
#!/usr/bin/env python3
|
||
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
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'],
|
||
|
)
|