24 lines
681 B
Python
Executable File
24 lines
681 B
Python
Executable File
#!/usr/bin/env python
|
|
import setuptools
|
|
#from distutils.core import setup
|
|
|
|
setuptools.setup(name='EyeStrainReminder',
|
|
version='1.0',
|
|
description='A small background tool to remind the user of the “20-20-20” rule.',
|
|
author='Abhorrent Anger',
|
|
author_email='abhorrentanger@cock.li',
|
|
url='https://git.pube.tk/abhorrent_anger/EyeStrainReminder',
|
|
packages=['eyestrainreminder'],
|
|
package_data={'': ['files/*']},
|
|
include_package_data=True,
|
|
install_requires=[
|
|
'notify2',
|
|
'playsound',
|
|
'pystray'
|
|
],
|
|
entry_points = {
|
|
'console_scripts': [
|
|
'eyestrainreminder = eyestrainreminder:main'
|
|
]
|
|
},
|
|
) |