craftbeerpi4-pione/setup.py
2024-05-01 16:50:24 +02:00

79 lines
2.4 KiB
Python

from setuptools import setup, find_packages
from cbpi import __version__
import platform
# read the contents of your README file
from os import popen, path
localsystem = platform.system()
raspberrypi=False
if localsystem == "Linux":
command="cat /proc/cpuinfo | grep 'Raspberry'"
model=popen(command).read()
if len(model) != 0:
raspberrypi=True
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='cbpi4',
version=__version__,
description='CraftBeerPi4 Brewing Software',
author='Manuel Fritsch / Alexander Vollkopf',
author_email='manuel@craftbeerpi.com',
url='http://web.craftbeerpi.com',
license='GPLv3',
project_urls={
'Documentation': 'https://openbrewing.gitbook.io/craftbeerpi4_support/'},
packages=find_packages(),
include_package_data=True,
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst', '*.yaml'],
'cbpi': ['*','*.txt', '*.rst', '*.yaml']},
python_requires='>=3.9',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
"typing-extensions>=4",
"aiohttp==3.9.4",
"aiohttp-auth==0.1.1",
"aiohttp-route-decorator==0.1.4",
"aiohttp-security==0.5.0",
"aiohttp-session==2.12.0",
"aiohttp-swagger==1.0.16",
"async-timeout==4.0.3",
"aiojobs==1.2.1 ",
"aiosqlite==0.17.0",
"cryptography==42.0.5",
"pyopenssl==24.1.0",
"requests==2.31.0",
"voluptuous==0.14.2",
"pyfiglet==1.0.2",
'click==8.1.7',
'shortuuid==1.0.13',
'tabulate==0.9.0',
'aiomqtt==2.0.1',
'inquirer==3.2.4',
'colorama==0.4.6',
'psutil==5.9.8',
'cbpi4gui',
'importlib_metadata',
'numpy==1.26.4',
'pandas==2.2.2'] + (
['rpi-lgpio'] if raspberrypi else [] ) + (
['python-systemd'] if localsystem == "Linux" else [] ),
dependency_links=[
'https://testpypi.python.org/pypi',
],
entry_points = {
"console_scripts": [
"cbpi=cbpi.cli:main",
]
}
)