Spaces:
Running
Running
File size: 243 Bytes
6ba5875 |
1 2 3 4 5 6 7 8 9 10 |
from setuptools import setup, find_packages
setup(
name="DeDoDe",
packages=find_packages(include= ["DeDoDe*"]),
install_requires=open("requirements.txt", "r").read().split("\n"),
version="0.0.1",
author="Johan Edstedt",
) |