-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 864 Bytes
/
setup.py
File metadata and controls
34 lines (31 loc) · 864 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
from setuptools import setup, find_packages
from setuptools.command.install import install
import os
import subprocess
from distutils.util import convert_path
main_ns = {}
ver_path = convert_path("src/graphmb/version.py")
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
setup(
name="graphmb",
version=main_ns["__version__"],
packages=["graphmb"],
python_requires=">=3.8",
package_dir={"": "src"},
setup_requires=["setuptools~=58.0", "wheel", "sphinx-rtd-theme", "twine"],
install_requires=[
"wheel",
"requests",
"networkx==2.6.2",
"torch==1.13.1",
"tensorflow==2.11.1",
"tqdm==4.61.2",
"mlflow==2.6.0",
"importlib_resources"
],
entry_points={
"console_scripts": ["graphmb=graphmb.main:main"],
},
include_package_data=True,
)