-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (34 loc) · 802 Bytes
/
setup.py
File metadata and controls
40 lines (34 loc) · 802 Bytes
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
REQUIRED_PACKAGES = [
"gensim>=4.0.0",
"networkx",
"joblib",
"fastdtw",
"tqdm",
"numpy",
"scikit-learn",
"pandas",
"matplotlib",
]
setuptools.setup(
name="ge",
version="0.1.0",
author="Weichen Shen",
author_email="weichenswc@163.com",
url="https://github.com/shenweichen/GraphEmbedding",
packages=setuptools.find_packages(exclude=[]),
python_requires=">=3.7",
install_requires=REQUIRED_PACKAGES,
extras_require={
"tf": ["tensorflow>=1.15.5"],
"test": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"python-coveralls>=2.9.3",
],
},
entry_points={},
license="MIT license",
)