#!/usr/bin/env python from setuptools import setup #from distutils.core import setup 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'], install_requires=[ 'notify2', 'playsound' ], entry_points = { 'console_scripts': [ 'eyestrainreminder = eyestrainreminder:main' ] }, )