Skip to content

Commit

Permalink
fix: removed read requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
unl0ck committed Jun 1, 2024
1 parent 06fee2e commit b043fb2
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
from setuptools import setup, find_packages
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',
Expand All @@ -14,6 +7,6 @@
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=[
requirements,
'requests'
],
)

0 comments on commit b043fb2

Please sign in to comment.