]> git.scottworley.com Git - srec/blob - setup.py
Recording object
[srec] / setup.py
1 from setuptools import setup
2
3 setup(
4 name='srec',
5 version='0.1.0',
6 description='A simple GUI for screen recording',
7 author='Scott Worley',
8 author_email='scottworley@scottworley.com',
9 url='https://git.scottworley.com/srec',
10 license='GPL-3.0',
11 py_modules=['srec'],
12 entry_points={
13 'console_scripts': [
14 'srec = srec:main',
15 ],
16 })