Features, packaging + sample config, cf. README.md

This commit is contained in:
Mike L 2024-10-01 03:14:01 +02:00
parent 8ded24d9f2
commit d8a9ba0713
Signed by: mikeslab
GPG key ID: 48CCD1768D862D40
4 changed files with 237 additions and 76 deletions

13
setup.py Normal file
View file

@ -0,0 +1,13 @@
from setuptools import setup
setup(
name='ani2cape',
version='0.0.2',
install_requires=['pillow>=10.0'],
py_modules=['ani2cape', 'config'],
entry_points={
'console_scripts': [
'ani2cape = ani2cape:main',
]
}
)