Vincentqyw
add: roma
c608946
raw history blame
No virus
237 Bytes
from setuptools import setup, find_packages
setup(
name="dkm",
packages=find_packages(include=("dkm*",)),
version="0.3.0",
author="Johan Edstedt",
install_requires=open("requirements.txt", "r").read().split("\n"),
)