-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
73 lines (68 loc) · 2.14 KB
/
setup.py
File metadata and controls
73 lines (68 loc) · 2.14 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
"""
BrainJam – setup.py
Installable package for the BrainJam multimodal AI performance instrument.
"""
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
with open("requirements.txt", encoding="utf-8") as f:
requirements = [
line.strip()
for line in f
if line.strip() and not line.startswith("#")
]
setup(
name="brainjam",
version="0.4.0",
description=(
"BrainJam: A multimodal AI-driven performance instrument with "
"P300-based selection, fNIRS slow modulation, and EMG embodied control."
),
long_description=long_description,
long_description_content_type="text/markdown",
author="BrainJam Research Team",
license="See LICENSE",
python_requires=">=3.9",
packages=find_packages(
exclude=["tests*", "examples*", "docs*", "notebooks*", "literature*"]
),
include_package_data=True,
install_requires=[
"numpy>=1.24.0",
"scipy>=1.10.0",
"scikit-learn>=1.3.0",
"matplotlib>=3.7.0",
"streamlit>=1.28.0",
"plotly>=5.14.0",
"soundfile>=0.12.0",
],
extras_require={
"ml": ["torch>=2.0.0", "torchaudio>=2.0.0"],
"midi": ["pretty_midi>=0.2.9", "midi2audio>=0.1.1"],
"lsl": ["pylsl>=1.16.0"],
"brainflow": ["brainflow>=5.0.0"],
"musicgen": ["transformers>=4.30.0"],
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
],
},
entry_points={
"console_scripts": [
"brainjam-app=streamlit_app.cli:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
project_urls={
"Source": "https://github.com/curiousbrutus/brainjam",
},
)