-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
36 lines (32 loc) · 1.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# !/usr/bin/env python3
# coding:utf-8
"""
Name : setup.py
Author : Kuldeep Singh Sidhu
Time : 27-11-2020 02:58 PM
GitHub : https://github.com/singhsidhukuldeep
Description: Used to setup stay-awake
"""
from setuptools import setup, find_packages
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
]
setup(
name='stay-awake',
version='0.3',
description='Simple Platform Independent Python package to keep your system awake without affecting workflow!',
long_description=open('README.md').read() + '\n\n' + open('CHANGELOG.md').read()+'\n\nRead more at https://github.com/singhsidhukuldeep/stay-awake',
long_description_content_type="text/markdown",
url='https://github.com/singhsidhukuldeep/stay-awake',
author='Kuldeep Singh Sidhu',
author_email='[email protected]',
classifiers=classifiers,
keywords='stay awake',
packages=find_packages(),
install_requires=['pyautogui', 'tqdm'],
zip_safe=False,
)