-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 1.06 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (34 loc) · 1.06 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
from setuptools import find_packages, setup
setup(
name="pnpl",
version="0.1.1",
packages=find_packages(),
include_package_data=True,
package_data={
"pnpl.competition": ["data/*.csv"],
},
install_requires=[
"mne",
"mne_bids",
"numpy",
"pandas",
"torch",
"h5py",
"huggingface_hub",
"requests",
# Kaggle submission upload. >= 2.0 supports the modern KAGGLE_API_TOKEN
# (KGAT_…) format and requires Python >= 3.11; older Pythons resolve to
# the 1.7.x line which falls back to KAGGLE_USERNAME + KAGGLE_KEY auth.
"kaggle",
],
author="Dulhan Jayalath",
author_email="dulhan@robots.ox.ac.uk",
description="Load and process brain datasets for deep learning",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/neural-processing-lab/pnpl",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
],
)