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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
import subprocess
name = 'python-ipmi'
version_py = os.path.join(os.path.dirname(__file__), 'pyipmi', 'version.py')
def git_pep440_version():
return '0.5.7'
full = subprocess.check_output(
['git', 'describe', '--tags', '--always', '--dirty=.dirty'],
stderr=subprocess.STDOUT).decode().strip()
tag = subprocess.check_output(
['git', 'describe', '--tags', '--always', '--abbrev=0'],
stderr=subprocess.STDOUT).decode().strip()
tail = full[len(tag):]
return tag + tail.replace('-', '.dev', 1).replace('-', '+', 1)
try:
version = git_pep440_version()
with open(version_py, 'w') as f:
f.write('# This file was autogenerated by setup.py\n')
f.write('__version__ = \'%s\'\n' % (version,))
except (OSError, subprocess.CalledProcessError, IOError):
try:
with open(version_py, 'r') as f:
d = dict()
exec(f.read(), d)
version = d['__version__']
except IOError:
version = 'unknown'
with open('README.rst') as f:
readme = f.read()
setup(name=name,
version=version,
description='Pure python IPMI library',
long_description=readme,
url='https://github.com/kontron/python-ipmi',
download_url='https://github.com/kontron/python-ipmi/tarball/' + version,
author='Michael Walle, Heiko Thiery',
author_email='michael.walle@kontron.com, heiko.thiery@kontron.com',
packages=find_packages(exclude=['tests*']),
license='LGPLv2+',
platforms=["any"],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Software Development :: Libraries :: Python Modules',
],
entry_points={
'console_scripts': [
'ipmitool.py = pyipmi.ipmitool:main',
]
},
test_suite='tests',
tests_require=[
'pytest',
],
install_requires=[
],
)
|