Spaces:
Sleeping
Sleeping
File size: 347 Bytes
ae1d0b9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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",
)
|