from setuptools import setup setup( name='srec', version='0.1.0', description='A simple GUI for screen recording', author='Scott Worley', author_email='scottworley@scottworley.com', url='https://git.scottworley.com/srec', license='GPL-3.0', py_modules=['srec'], entry_points={ 'console_scripts': [ 'srec = srec:main', ], })