You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
637 B
Python
30 lines
637 B
Python
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,
|
|
)
|