scritcher/setup.py

15 lines
254 B
Python
Raw Normal View History

2019-06-06 20:05:59 +00:00
from setuptools import setup
setup(
name='scritcher',
version='0.1',
py_modules=['scritcher'],
2019-06-06 20:39:47 +00:00
install_requires=[
'Pillow==6.0.0',
],
2019-06-06 20:05:59 +00:00
entry_points='''
[console_scripts]
scritcher=scritcher:main
''',
)