|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=69.0", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "graffiti-detection-ai-model" |
| 7 | +version = "0.1.0" |
| 8 | +description = "YOLOv8-based graffiti detection library with training, inference, surveillance, and API utilities." |
| 9 | +readme = "README.md" |
| 10 | +requires-python = ">=3.8" |
| 11 | +license = "MIT" |
| 12 | +license-files = ["LICENSE.md"] |
| 13 | +authors = [ |
| 14 | + { name = "Pierre-Henry Soria" } |
| 15 | +] |
| 16 | +keywords = ["computer-vision", "graffiti", "yolo", "object-detection", "surveillance", "fastapi"] |
| 17 | +classifiers = [ |
| 18 | + "Development Status :: 3 - Alpha", |
| 19 | + "Intended Audience :: Developers", |
| 20 | + "Intended Audience :: Science/Research", |
| 21 | + "Operating System :: OS Independent", |
| 22 | + "Programming Language :: Python :: 3", |
| 23 | + "Programming Language :: Python :: 3 :: Only", |
| 24 | + "Programming Language :: Python :: 3.8", |
| 25 | + "Programming Language :: Python :: 3.9", |
| 26 | + "Programming Language :: Python :: 3.10", |
| 27 | + "Programming Language :: Python :: 3.11", |
| 28 | + "Programming Language :: Python :: 3.12", |
| 29 | + "Topic :: Scientific/Engineering :: Image Recognition" |
| 30 | +] |
| 31 | +dependencies = [ |
| 32 | + "torch>=2.0.0", |
| 33 | + "torchvision>=0.15.0", |
| 34 | + "ultralytics>=8.0.0", |
| 35 | + "opencv-python>=4.8.0", |
| 36 | + "opencv-contrib-python>=4.8.0", |
| 37 | + "Pillow>=10.0.0", |
| 38 | + "numpy>=1.24.0", |
| 39 | + "pandas>=2.0.0", |
| 40 | + "albumentations>=1.3.0", |
| 41 | + "matplotlib>=3.7.0", |
| 42 | + "seaborn>=0.12.0", |
| 43 | + "tqdm>=4.65.0", |
| 44 | + "PyYAML>=6.0", |
| 45 | + "tensorboard>=2.13.0", |
| 46 | + "scikit-learn>=1.3.0", |
| 47 | + "scipy>=1.11.0", |
| 48 | + "imageio>=2.31.0", |
| 49 | + "pycocotools>=2.0.6", |
| 50 | + "fastapi>=0.104.0", |
| 51 | + "uvicorn>=0.24.0", |
| 52 | + "python-multipart>=0.0.6", |
| 53 | + "requests>=2.31.0", |
| 54 | + "twilio>=8.10.0", |
| 55 | + "python-dotenv>=1.0.0" |
| 56 | +] |
| 57 | + |
| 58 | +[project.urls] |
| 59 | +Homepage = "https://github.com/pH-7/graffiti-detection-ai-model" |
| 60 | +Repository = "https://github.com/pH-7/graffiti-detection-ai-model" |
| 61 | +Issues = "https://github.com/pH-7/graffiti-detection-ai-model/issues" |
| 62 | + |
| 63 | +[tool.setuptools] |
| 64 | +include-package-data = true |
| 65 | + |
| 66 | +[tool.setuptools.packages.find] |
| 67 | +where = ["."] |
| 68 | +include = ["src*"] |
| 69 | +exclude = ["tests*", "notebooks*", "deployment*"] |
0 commit comments