added clean and tested requirements.txt

This commit is contained in:
romue
2021-11-11 17:16:50 +01:00
parent 5048e4204e
commit eb2ecba149
4 changed files with 26 additions and 45 deletions

View File

@ -1,12 +0,0 @@
from setuptools import find_packages, setup
with open("requirements.txt") as f:
reqs = [line.strip() for line in f]
setup(
name="EDYs",
version="0.1",
python_requires=">=3.6",
packages=find_packages(),
install_requires=reqs,
)