EyeStrainReminder/setup.py

21 lines
595 B
Python
Raw Normal View History

2019-10-22 14:43:20 +03:00
#!/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'],
2019-10-23 10:10:26 +03:00
install_requires=[
'notify2',
'playsound'
],
2019-10-22 14:43:20 +03:00
entry_points = {
'console_scripts': [
2019-10-23 10:10:26 +03:00
'eyestrainreminder = eyestrainreminder:main'
2019-10-22 14:43:20 +03:00
]
},
)