-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
66 lines (57 loc) · 1.41 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
60
61
62
63
64
65
66
[metadata]
name = geneplexus
version = 2.0.0-dev
description = Network based gene classification
long_description = file: README.md
long_description_content_type = text/markdown
# Links
url = https://github.com/krishnanlab/PyGenePlexus
project_urls =
Documentation = https://pygeneplexus.readthedocs.io
# Authors
author = Remy Liu and Christopher A. Mancuso
author_email = [email protected], [email protected]
# License
license_files = file: LICENSE.md
license = BSD 3-Clause License
# Search tags
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3 :: Only
License :: OSI Approved :: BSD License
keywords =
Network Biology
Supervised Learning
Gene Classification
[options]
install_requires =
numpy >= 1.20.1
scikit-learn >= 1.0.0
scipy >= 1.6.2
pandas >= 1.2.4
statsmodels >= 0.14.0
requests
tqdm
pystow
pyyaml
zip_save = false
include_package_data = true
python_requires = >=3.9
packages = find:
[options.entry_points]
console_scripts =
geneplexus = geneplexus.cli:main
[options.extras_require]
dev =
parameterized
pytest
pytest-cov
pytest-mock
pytest-order
requests-mock
tox