AK47-M4A4's picture
v1
ae1d0b9
raw
history blame contribute delete
347 Bytes
from setuptools import setup, find_packages
def read_requirements():
with open("requirements.txt") as f:
return [line.strip() for line in f if line.strip() and not line.startswith("#")]
setup(
name="src",
version="0.1",
packages=find_packages(),
install_requires=read_requirements(),
python_requires=">=3.8",
)