-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.cfg
64 lines (55 loc) · 1.35 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
[metadata]
name = pecanpy
version = 2.0.10-dev
author = Remy Liu
author_email = [email protected]
description = A parallelized, efficient, and accelerated node2vec
long_description = file: README.md
long_description_content_type = text/markdown
# Links
url = https://github.com/krishnanlab/PecanPy
project_urls =
Documentation = https://pecanpy.readthedocs.io/
# License
license_files = file: LICENSE
license = BSD 3-Clause License
# Search tags
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
keywords =
Network Embedding
[options]
install_requires =
gensim>=4.1.0
numpy>=1.20.0
numba>=0.46.0
numba-progress>=0.0.2
nptyping>=2.0.0
typing_extensions>=4.0.1
zip_safe = false
include_package_data = True
python_requires = >=3.8
# Where is my code
packages = find:
package_dir =
= src
[options.extras_require]
dev =
bump2version==1.0.1
mypy==1.9.0
parameterized==0.9.0
pre-commit==3.5.0; python_version < "3.9"
pre-commit==3.7.0; python_version >= "3.9"
pytest-cov==4.1.0
pytest-xdist==3.5.0
pytest==8.1.1
tox==4.14.2
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
pecanpy = pecanpy.cli:main