forked from workhorsy/py-cpuinfo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.04 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
33
# Copyright (c) 2014-2021 Matthew Brennan Jones <[email protected]>
# Py-cpuinfo gets CPU info with pure Python 2 & 3
# It uses the MIT License
# It is hosted at: https://github.com/workhorsy/py-cpuinfo
import os
from setuptools import setup
with open(os.path.join(os.getcwd(), 'README.rst'), 'r') as f:
readme_content = f.read()
setup(
name = "py-cpuinfo",
version = "8.0.0",
author = "Matthew Brennan Jones",
author_email = "[email protected]",
description = "Get CPU info with pure Python 2 & 3",
long_description=readme_content,
license = "MIT",
url = "https://github.com/workhorsy/py-cpuinfo",
packages=['cpuinfo'],
test_suite="test_suite",
entry_points = {
'console_scripts': ['cpuinfo = cpuinfo:main'],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3"
],
)