This commit is contained in:
Johannes Stelzer 2023-01-12 02:46:14 +01:00
parent 608f0f30a4
commit 8562633f7c
1 changed files with 10 additions and 0 deletions

10
setup.py Normal file
View File

@ -0,0 +1,10 @@
from setuptools import setup
with open("requirements.txt", "r") as f:
requirements = f.read().splitlines()
setup(
name='latentblending',
version='0.1',
install_requires=requirements,
)