auto-cpufreq/setup.py

45 lines
1.3 KiB
Python

import os
from setuptools import setup
with open("README.md") as readme_file:
readme = readme_file.read()
this = os.path.dirname(os.path.realpath(__file__))
def read(name):
with open(os.path.join(this, name)) as f:
return f.read()
# Used for the tar.gz/snap releases
VERSION = "2.0.0"
setup(
name="auto-cpufreq",
setuptools_git_versioning={
"starting_version": VERSION,
"template": "{tag}+{sha}",
"dev_template": "{tag}+{sha}",
"dirty_template": "{tag}+{sha}.post{ccount}.dirty"
},
setup_requires=["setuptools-git-versioning"],
description="Automatic CPU speed & power optimizer for Linux",
long_description=readme,
author="Adnan Hodzic",
author_email="adnan@hodzic.org",
url="https://github.com/AdnanHodzic/auto-cpufreq",
packages=["auto_cpufreq", "auto_cpufreq/gui"],
install_requires=read("requirements.txt"),
include_package_data=True,
zip_safe=True,
license="GPLv3",
keywords="linux cpu speed power frequency turbo optimzier auto cpufreq",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux" "Environment :: Console" "Natural Language :: English",
],
scripts=["bin/auto-cpufreq", "bin/auto-cpufreq-gtk"],
)