EyeStrainReminder/setup.py

24 lines
681 B
Python
Raw Normal View History

2019-10-22 14:43:20 +03:00
#!/usr/bin/env python
2019-10-23 10:52:39 +03:00
import setuptools
2019-10-22 14:43:20 +03:00
#from distutils.core import setup
2019-10-23 10:52:39 +03:00
setuptools.setup(name='EyeStrainReminder',
2019-10-22 14:43:20 +03:00
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:52:39 +03:00
package_data={'': ['files/*']},
include_package_data=True,
2019-10-23 10:10:26 +03:00
install_requires=[
'notify2',
2019-10-23 10:52:39 +03:00
'playsound',
'pystray'
2019-10-23 10:10:26 +03:00
],
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
]
},
)