ai-detection / setup.py
abdullah4's picture
Create setup.py
cd5fd8a
raw
history blame
197 Bytes
from setuptools import setup, find_packages
setup(
name="ai-detector",
version="1.0",
packages=find_packages(),
install_requires=[
"scikit-learn",
"pandas"
]
)