36 lines
1017 B
Python
36 lines
1017 B
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()
|
|
setup(
|
|
name='auto-cpufreq',
|
|
version='1.0',
|
|
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'],
|
|
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']
|
|
)
|