-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.cfg
59 lines (50 loc) · 1.66 KB
/
setup.cfg
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
# This file is used to configure your project.
# Read more about the various options under:
# https://setuptools.pypa.io/en/latest/userguide/declarative_config.html
# https://setuptools.pypa.io/en/latest/references/keywords.html
[metadata]
name = neural_decoder
description = PyTorch neural sequence decoder for speech BCI (https://github.com/fwillett/speechBCI/tree/main/NeuralDecoder)
version = 0.0.1
author = Chaofei Fan, Frank Willett
author_email = [email protected]
license = MIT
license_files = LICENSE.txt
# Add here related links, for example:
project_urls =
# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = Linux
# Add here all kinds of additional classifiers as defined under
# https://pypi.org/classifiers/
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
[options]
zip_safe = False
packages = find_namespace:
include_package_data = True
package_dir =
=src
# Require a min/specific Python version (comma-separated conditions)
python_requires = >=3.9
# Add here dependencies of your project (line-separated), e.g. requests>=2.2,<3.0.
# Version specifiers like >=2.2,<3.0 avoid problems due to API changes in
# new major versions. This works if the required packages follow Semantic Versioning.
# For more information, check out https://semver.org/.
install_requires =
importlib-metadata; python_version<"3.8"
torch==1.13.1
hydra-core==1.3.2
hydra-submitit-launcher==1.1.5
hydra-optuna-sweeper==1.2.0
numpy==1.25.0
scipy==1.11.1
numba==0.58.1
scikit-learn==1.3.2
g2p_en==2.1.0
edit_distance==1.0.6
[options.packages.find]
where = src
exclude =
tests
examples