mirror of
https://mikeslab.dix.asia/gogs/My-Mods/ANI2Cape.git
synced 2025-10-01 23:14:57 +00:00
13 lines
263 B
Python
13 lines
263 B
Python
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',
|
|
]
|
|
}
|
|
)
|