forked from georgewhewell/undervolt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 999 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
32
33
34
35
36
37
38
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import dirname, join
from setuptools import setup
import doctest
import undervolt
def test_suite():
return doctest.DocTestSuite('undervolt')
setup(
name='undervolt',
version=undervolt.__version__,
description='Undervolt Intel CPUs under Linux',
long_description=open(
join(dirname(__file__), 'README.rst')).read(),
url='http://github.com/georgewhewell/undervolt',
author='George Whewell',
author_email='[email protected]',
license='GPL',
py_modules=['undervolt'],
test_suite='setup.test_suite',
entry_points={
'console_scripts': [
'undervolt=undervolt:main',
],
},
keywords=['undervolt', 'intel', 'linux'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)