-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
29 lines (26 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup, find_packages
import subprocess
with open("README.md", "r") as fh:
long_description = fh.read()
# Fetch latest tag
# latest_tag = subprocess.check_output(["git", "describe", "--tags", "--abbrev=0"]).strip().decode("utf-8")
setup(
name='optihood',
packages=find_packages(),
version='v0.02',
author="Institute for Solar Technology (SPF), OST Rapperswil",
author_email="neha.dimri@ost.ch",
description="optihood optimization framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://optihood.readthedocs.io",
install_requires=["bokeh", "configparser", "python-dateutil", "matplotlib", "numpy", "oemof.solph",
"oemof.thermal", "openpyxl", "pandas", "plotly", "pvlib", "Pyomo", "scipy", "xlrd", "xlwt"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
],
#setup_requires=["setuptools-git-versioning"],
python_requires=">=3.12",
)