Skip to content

Commit

Permalink
Updated requirements.txt and setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Manhaeve committed Jan 26, 2024
1 parent bde6d05 commit aed9531
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
torch~=1.5.1
torchvision~=0.6.1
numpy~=1.18.1
pandas~=1.2.4
pyparsing~=2.4.7
dgl~=0.6.1
torch
torchvision
numpy
pandas
pyparsing
dgl
16 changes: 9 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,14 @@
long_description_content_type="text/markdown",
packages=setuptools.find_packages(include=["deepstochlog", "deepstochlog.*"]),
python_requires='>=3',
package_data={'deepstochlog': ['*.pl']},
include_package_data=True,
install_requires=[
"torch~=1.5.1",
"torchvision~=0.6.1",
"numpy~=1.18.1",
"pandas~=1.2.4",
"pyparsing~=2.4.7",
"dgl~=0.6.1",
"torch",
"torchvision",
"numpy",
"pandas",
"pyparsing",
"dgl",
],
)
)

0 comments on commit aed9531

Please sign in to comment.