forked from VitorRamos/cpufreq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.02 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='cpufreq',
version='0.3.1',
description='CPU Frequency manage tool',
url='https://github.com/VitorRamos/cpufreq',
author='Vitor Ramos, Alex Furtunato',
author_email='[email protected], [email protected]',
license='MIT',
packages=['cpufreq'],
install_requires=[
],
long_description=read('README.rst'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
entry_points={
'console_scripts': [
'cpufreq = cpufreq.run:main',
],
},
keywords='cpufreq tool',
zip_safe=False)