stevenkhan commited on
Commit
f2d7808
·
verified ·
1 Parent(s): 0867f54

Upload setup.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. setup.py +21 -0
setup.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="clashcr",
5
+ version="0.1.0",
6
+ packages=find_packages(),
7
+ install_requires=[
8
+ "opencv-python>=4.8.0",
9
+ "numpy>=1.24.0",
10
+ "pyyaml>=6.0",
11
+ "requests>=2.31.0",
12
+ "ultralytics>=8.0.0",
13
+ "mss>=9.0.0",
14
+ ],
15
+ entry_points={
16
+ "console_scripts": [
17
+ "clashcr=clashcr.cli:main",
18
+ ],
19
+ },
20
+ python_requires=">=3.9",
21
+ )