Files
Unsupervised-Elicitation/setup.py
T
2025-06-10 18:56:05 +00:00

12 lines
213 B
Python

# setup.py
from setuptools import find_packages, setup
setup(
name="my_package",
version="0.1",
packages=find_packages(),
install_requires=[
# List your package dependencies here
],
)