-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.15 KB
/
setup.py
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
import setuptools
from pathlib import Path
workdir = Path(__file__).parent.absolute() / 'axDo/workdirs/dev'
workdir.mkdir(parents=True, exist_ok=True)
workdir = Path(__file__).parent.absolute() / 'axDo/results'
workdir.mkdir(parents=True, exist_ok=True)
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="EEG-Cluster", # Replace with your own username
version="0.1",
author="xavante",
author_email="[email protected]",
description="mvpa_package for Lund university",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points = {
'console_scripts': ['eray=SetupCluster:main'],
},
packages=setuptools.find_packages(exclude=["data", "documents", "Old", "Orchestration", "Plotting", "ReadableMatlab"]),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
],
python_requires='>=3.8.5',
install_requires=[
'ray==1.2.0',
'scipy==1.6.1',
'scikit-learn==0.24.1',
'scikit-image==0.18.1',
'openstacksdk>=0.54.0',
'accelerator',
]
)