from setuptools import setup # to install run : pip install -e pyrecoy from directory setup( name="pyrecoy", version="0.1", description="Private package containing utils for flexible power system modelling on energy markets.", url="#", author="mekremer", author_email="kremer@recoy.com", license="", packages=["pyrecoy"], install_requires=[ "requests", "pandas", "numpy", "entsoe-py", "numpy-financial", "scipy", "plotly", "tqdm", "millify", "bs4", "xmltodict", "openpyxl", ], zip_safe=False, )