-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (40 loc) · 1.55 KB
/
Copy pathsetup.py
File metadata and controls
46 lines (40 loc) · 1.55 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
44
45
46
"""Setuptools entrypoint for the multimodal-precursor-detection project."""
from pathlib import Path
from setuptools import find_packages, setup
def _read_requirements() -> list[str]:
"""Parse requirements.txt, skipping comments and blank lines."""
req_path = Path(__file__).parent / "requirements.txt"
if not req_path.exists():
return []
out: list[str] = []
for raw in req_path.read_text().splitlines():
line = raw.strip()
if not line or line.startswith("#"):
continue
out.append(line)
return out
setup(
name="multimodal-precursor-detection",
version="0.1.0",
description=(
"Multimodal precursor detection for behavioral escalation in "
"intellectual disability (synthetic-data research prototype)."
),
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
author="Srikanth Baride",
url="https://github.com/srikanthbaride/multimodal-precursor-detection",
license="MIT",
python_requires=">=3.10",
packages=find_packages(include=["src", "src.*", "data", "data.*"]),
install_requires=_read_requirements(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)