-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.16 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (32 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="atar",
version="1.0.14",
description="A CLI tool for AI tasks such as dataset handling, training, and validation.",
long_description=long_description,
long_description_content_type="text/markdown",
author="MOUHIB Otman",
author_email="mouhib.otm@gmail.com",
url="https://github.com/otman-dev/atar-cli", # Replace with your GitHub repo URL
packages=find_packages(where=".", exclude=["tests*"]),
install_requires=[
# Add any dependencies here
"ultralytics", # YOLO and related tools
"roboflow", # Roboflow Python API
"supervision", # Supervision tools for vision tasks
# Other required libraries
],
entry_points={
"console_scripts": [
"atar-cli=atar.cli:main", # Command to invoke your CLI
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License", # Choose your license
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)