Skip to content

Commit

Permalink
fix: updated requirements.txt path in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
unl0ck committed Jun 1, 2024
1 parent 35e4a62 commit 06fee2e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
from setuptools import setup, find_packages
with open('requirements.txt') as f:
import os

setup_py_dir = os.path.dirname(os.path.abspath(__file__))
requirements_file = os.path.join(setup_py_dir, 'requirements.txt')

with open(requirements_file) as f:
requirements = f.read().splitlines()

setup(
name='viessmann-gridbox-connector',
version='1.0.3',
Expand Down

0 comments on commit 06fee2e

Please sign in to comment.