-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (27 loc) · 856 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (27 loc) · 856 Bytes
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
from setuptools import setup, find_packages
"""
Editable install configuration for pokemon-card-valuator.
This allows:
pip install -e .
So imports like:
from src.pokemon_valuator.pipeline.prediction_pipeline_final import PokemonCardValuator
work from anywhere.
NOTE:
- We intentionally package `src.*` because the repo uses `src/` as the
top-level import namespace (not the typical src-layout).
"""
setup(
name="pokemon-card-valuator",
version="0.1.0",
description="Pokemon Card Valuator (Identification + PSA Grading + Price Lookup)",
author="Your Name",
python_requires=">=3.10",
packages=find_packages(include=["src", "src.*"]),
include_package_data=True,
install_requires=[
# minimal runtime deps (full list still in requirements.txt)
"numpy",
"pandas",
"pyyaml",
],
)