Skip to content

Commit

Permalink
initial commit for setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
“sebastian“ committed Oct 22, 2021
1 parent f9ff42f commit e0b36f1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import matplotlib
import openpyxl
import pandas
import pyyaml
import setuptools

with open('README.md', 'r', encoding='utf-8') as readme_file:
readme = readme_file.read()

setuptools.setup(
name='medea',
version='0.1',
author='Sebastian Wehrle',
author_email='[email protected]',
description='medea - a power system model',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/inwe-energy/medea',
project_urls={},
license='MIT',
packages=['medea'],
install_requires=[pandas, openpyxl, matplotlib, pyyaml],
)

0 comments on commit e0b36f1

Please sign in to comment.