-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 921 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 921 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
from setuptools import setup, find_packages
setup(
name="OpenCortex",
version="0.1.8",
author="Michele Romani",
author_email="michele.romani.gzl0@gmail.com",
description="Software to stream EEG data, perform preprocessing, and train machine learning models to build real-time BCI applications.",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
url="https://github.com/BRomans/OpenCortex",
include_package_data=True,
packages=find_packages(exclude=["data", "images", "notebooks", "test", "tools", "export", "examples"]),
package_data={
"opencortex.config": ["*.yaml"],
},
entry_points={
"console_scripts": [
"opencortex=opencortex.__main__:run_cli",
],
},
python_requires=">=3.8",
)