-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 979 Bytes
/
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
from setuptools import setup, find_packages
VERSION = '0.1.0'
DESCRIPTION = 'Turn on/off CPU cores in Linux'
LONG_DESCRIPTION = 'A package that allows you to turn on/off CPU cores in Linux to increase battery life'
# Setting up
setup(
name="cpu_controller_linux",
version=VERSION,
author="Devansh Arora",
author_email="[email protected]",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
packages=find_packages(),
include_package_data=True,
install_requires=['PyQt6'],
keywords=['python', 'linux', 'cpu', 'battery life', 'cpu cores',],
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
],
entry_points={
'console_scripts': [
'cpu-controller = cpu_controller_linux.main:main',
],
},
package_data={'cpu_controller_linux': ['cpu.png']},
)