Spaces:
dylanebert
/
Running on Zero

EDGS / submodules /RoMa /setup.py
Olga
Initial commit
5f9d349
raw
history blame contribute delete
245 Bytes
from setuptools import setup, find_packages
setup(
name="romatch",
packages=find_packages(include=("romatch*",)),
version="0.0.1",
author="Johan Edstedt",
install_requires=open("requirements.txt", "r").read().split("\n"),
)