Sentoz commited on
Commit
c55bb36
·
verified ·
1 Parent(s): a84fd62

Upload setup.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. setup.py +40 -0
setup.py ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ with open("README.md", "r", encoding="utf-8") as fh:
4
+ long_description = fh.read()
5
+
6
+ with open("requirements.txt") as f:
7
+ requirements = [line.strip() for line in f if line.strip() and not line.startswith("#")]
8
+
9
+ setup(
10
+ name="dental-opg-cavity-detection",
11
+ version="1.0.0",
12
+ author="Paul Sentongo",
13
+ author_email="paul.sentongo@example.com",
14
+ description="MLOps pipeline for dental cavity detection in OPG X-ray images using YOLOv8",
15
+ long_description=long_description,
16
+ long_description_content_type="text/markdown",
17
+ url="https://github.com/Sentoz/Dental-OPG-XRAY-Analysis-MLOPS",
18
+ package_dir={"": "src"},
19
+ packages=find_packages(where="src"),
20
+ python_requires=">=3.10",
21
+ install_requires=requirements,
22
+ classifiers=[
23
+ "Development Status :: 4 - Beta",
24
+ "Intended Audience :: Healthcare Industry",
25
+ "Intended Audience :: Science/Research",
26
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
27
+ "Topic :: Scientific/Engineering :: Medical Science Apps.",
28
+ "License :: OSI Approved :: MIT License",
29
+ "Programming Language :: Python :: 3",
30
+ "Programming Language :: Python :: 3.10",
31
+ "Programming Language :: Python :: 3.11",
32
+ "Programming Language :: Python :: 3.12",
33
+ ],
34
+ entry_points={
35
+ "console_scripts": [
36
+ "dental-train=dental_opg.pipeline.stage_04_model_training:main",
37
+ "dental-predict=dental_opg.pipeline.prediction_pipeline:main",
38
+ ],
39
+ },
40
+ )