Skip to content

Commit

Permalink
Make sure that dependencies are installed
Browse files Browse the repository at this point in the history
  • Loading branch information
shsdev committed Dec 9, 2024
1 parent cdad919 commit 6017f67
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,8 +1,13 @@
import setuptools

with open("README.md", "r") as fh:
# Read README.md
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

# Read dependencies from requirements.txt
with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = fh.read().splitlines()

setuptools.setup(
name="eatb",
version="0.2.9",
Expand All @@ -16,6 +21,7 @@
packages=setuptools.find_packages(),
package_data={'eatb': ["*.ini", "**/*.cfg", "**/**/*.xsd", "**/*.xml"]},
zip_safe=False,
install_requires=requirements,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit 6017f67

Please sign in to comment.