-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.54 KB
/
setup.py
File metadata and controls
43 lines (40 loc) · 1.54 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
35
36
37
38
39
40
41
42
43
"""
Setup script for Face Recognition Pipeline
"""
from setuptools import setup, find_packages
import os
def read_requirements():
"""Read requirements from requirements.txt"""
requirements_path = os.path.join(os.path.dirname(__file__), 'requirements.txt')
with open(requirements_path, 'r') as f:
requirements = [line.strip() for line in f if line.strip() and not line.startswith('#')]
return requirements
setup(
name="face-recognition-pipeline",
version="1.0.0",
author="Face Recognition Team",
description="A comprehensive pipeline for identifying employees in CCTV surveillance footage",
long_description=open("README.md").read() if os.path.exists("README.md") else "",
long_description_content_type="text/markdown",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=read_requirements(),
python_requires=">=3.7",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
entry_points={
"console_scripts": [
"face-recognition=face_recognition.main:main",
],
},
)