-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1.05 KB
/
setup.py
File metadata and controls
37 lines (33 loc) · 1.05 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
"""
Setup script for AIKA Python package.
This makes the Python helper modules (in the python/ directory) installable,
allowing clean imports without sys.path manipulation.
Usage:
pip install -e . # Install in development mode
"""
from setuptools import setup, find_packages
setup(
name="aika-python-helpers",
version="1.0.0",
description="Python helper modules for AIKA neural network framework",
author="AIKA Project",
python_requires=">=3.8",
packages=find_packages(where="."),
package_dir={"": "."},
install_requires=[
"parameterized",
"pybind11>=2.10.0", # Required for C++ bindings
"numpy>=1.20.0", # Required for integration layer
],
extras_require={
"dev": [
"pytest",
"pytest-cov",
],
"integration": [
"transformers>=4.0.0", # Optional: for HuggingFace tokenizer backend
],
},
# Don't include the C++ extension here - it's built and installed via CMake
# This setup.py is only for the Python helper modules
)