-
Notifications
You must be signed in to change notification settings - Fork 77
/
setup.cfg
52 lines (44 loc) · 1006 Bytes
/
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
##########################
# Setup.py Configuration #
##########################
[metadata]
name = bionev
version = 0.1.0-dev
description = Biomedical Network Embedding Evaluation
long_description = file: README.md
long_description_content_type = text/markdown
# URLs associated with the project
url = https://github.com/xiangyue9607/BioNEV
# License Information
license = MIT
license_file = LICENSE
# Search tags
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
keywords =
[options]
install_requires =
numpy
networkx
scipy
tensorflow < 2.0.0
gensim
scikit-learn
tqdm
fastdtw
# Random options
zip_safe = false
include_package_data = True
python_requires = >=3.6
# Where is my code
packages = find:
package_dir =
= src
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
bionev = bionev.main:more_main