abdullah4 commited on
Commit
cd5fd8a
·
1 Parent(s): 3601644

Create setup.py

Browse files
Files changed (1) hide show
  1. setup.py +11 -0
setup.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="ai-detector",
5
+ version="1.0",
6
+ packages=find_packages(),
7
+ install_requires=[
8
+ "scikit-learn",
9
+ "pandas"
10
+ ]
11
+ )