forked from Junhua-Liao/LR-ASD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (19 loc) · 858 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
def read_requirements(file_path):
with open(file_path) as f:
return f.read().splitlines()
setup(
name='lr_asd',
version='0.1.0', # Initial version
packages=find_packages(), # Automatically find packages in the directory
install_requires=read_requirements('requirements.txt'), # List of dependencies
description='The repository for Springer IJCV 2025 (LR-ASD: Lightweight and Robust Network for Active Speaker Detection)',
long_description=open('README.md').read(), # Optional: long description from README
long_description_content_type='text/markdown',
url='https://github.com/colossyan/LR-ASD', # Replace with your repo URL
author='adamantal',
classifiers=[
'Programming Language :: Python :: 3',
],
)