48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
|
import os
|
||
|
|
||
|
import setuptools
|
||
|
|
||
|
|
||
|
requires = ['gi',
|
||
|
'python-xlib',
|
||
|
'pyaudio',
|
||
|
'psutil',
|
||
|
'jzstock',
|
||
|
'babel']
|
||
|
|
||
|
|
||
|
here = os.path.abspath(os.path.dirname(__file__))
|
||
|
|
||
|
with open(os.path.join(here, 'README.md')) as f:
|
||
|
long_description = '\n' + f.read()
|
||
|
|
||
|
setuptools.setup(
|
||
|
name="safeeyes",
|
||
|
version="1.1.9",
|
||
|
description="Protect your eyes from eye strain using this continuous breaks reminder.",
|
||
|
long_description=long_description,
|
||
|
author="Loganathan Gobinath",
|
||
|
author_email="slgobinath@gmail.com",
|
||
|
url="https://github.com/slgobinath/SafeEyes",
|
||
|
download_url="https://github.com/slgobinath/SafeEyes/archive/master.zip",
|
||
|
packages=setuptools.find_packages(),
|
||
|
package_data={'safeeyes': ['config/*.json',
|
||
|
'config/style/*.css',
|
||
|
'config/lang/*.json',
|
||
|
'glade/*.glade',
|
||
|
'resource/*']},
|
||
|
install_requires=requires,
|
||
|
entry_points={'console_scripts': ['safeeyes = safeeyes:safeeyes']},
|
||
|
keywords='linux utility health eye-strain safe-eyes',
|
||
|
classifiers=[
|
||
|
"Operating System :: POSIX :: Linux",
|
||
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
||
|
"Development Status :: 5 - Production/Stable",
|
||
|
"Environment :: X11 Applications :: GTK",
|
||
|
"Intended Audience :: End Users/Desktop",
|
||
|
"Topic :: Utilities"] + [
|
||
|
('Programming Language :: Python :: %s' % x) for x in
|
||
|
'2 2.7'.split()
|
||
|
]
|
||
|
)
|