From 2e056d2289d3baff8547b0d41b9791a9bc44d5a0 Mon Sep 17 00:00:00 2001 From: Conrad Date: Mon, 1 Apr 2024 18:48:14 +0200 Subject: [PATCH] Added requirements --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 930c6b2..53201cc 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,8 @@ from setuptools import find_packages, setup +with open("requirements.txt") as f: + requirements = f.read().splitlines() + setup( name="creyPY", version="0.0.9", @@ -10,4 +13,5 @@ setup( url="https://github.com/creyD/creyPY", license="MIT", python_requires=">=3.12", + install_requires=requirements, )