-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (28 loc) · 906 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
from setuptools import setup
from os import path
version = '0.1.0'
repo_base_dir = path.abspath(path.dirname(__file__))
# Long description
readme = path.join(repo_base_dir, 'README.md')
with open(readme) as f:
long_description = f.read()
setup(
name='powerline-cpu-temp',
version=version,
description='A Powerline segment to show CPU temperature',
long_description_content_type='text/markdown',
long_description=long_description,
author='DCsunset',
author_email='DCsunset@protonmail.com',
license='MIT',
url='https://github.com/DCsunset/powerline-cpu-temp',
install_requires=['psutil'],
# Add to lib so that it can be included
py_modules=['powerline_cpu_temp'],
classifiers=[
'Environment :: Console',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: Terminals'
]
)