37 lines
780 B
Python
37 lines
780 B
Python
"""
|
|
Setup-Skript für POC1 Installation
|
|
Verwendung: pip install -e .
|
|
"""
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='braunkohle-supply-chain-poc1',
|
|
version='0.1.0',
|
|
description='POC1: Braunkohle Supply Chain Modellierung mit Pyomo',
|
|
author='LEAG',
|
|
packages=find_packages(),
|
|
python_requires='>=3.8',
|
|
install_requires=[
|
|
'pyomo>=6.7',
|
|
'pandas>=2.0',
|
|
'numpy>=1.24',
|
|
'openpyxl>=3.10',
|
|
'matplotlib>=3.7',
|
|
],
|
|
extras_require={
|
|
'dev': [
|
|
'jupyter>=1.0',
|
|
'ipython>=8.12',
|
|
'pytest>=7.3',
|
|
'black>=23.0',
|
|
'flake8>=6.0',
|
|
]
|
|
},
|
|
entry_points={
|
|
'console_scripts': [
|
|
'poc1=main:main',
|
|
],
|
|
},
|
|
)
|