-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
56 lines (52 loc) · 1.26 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
[metadata]
name = mentor
version = attr: mentor._version.__version__
author = J. I. Miller
author_email = [email protected]
description = MENTOR
url = https://github.com/ayeTown/MENTOR
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
project_urls =
Bug Tracker = https://github.com/ayeTown/MENTOR/issues
[options]
scripts =
src/mentor/rwr_cv.R
src/mentor/__init__.py
src/mentor/_cluster.py
src/mentor/_datasets.py
src/mentor/_fancydend.py
src/mentor/_metrics.py
src/mentor/_rwrtoolkit.py
src/mentor/_utils.py
src/mentor/_version.py
src/mentor/cli.py
src/mentor/dendrogram.R
src/mentor/create_dendogram.R
src/mentor/heatmaps.R
src/mentor/run_cv.R
src/mentor/rwr_utils.R
src/mentor/subclustered_dendrogram.R
package_dir =
= src
packages = find:
python_requires = >=3.9
install_requires =
dynamicTreeCut
numpy
pandas
scikit-learn >= 1.2
scipy
pytest
include_package_data = True
[options.package_data]
* = *.R
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
mentor = mentor.cli:main