-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First update to many of the base configuration files to better match …
…DGL-PTM.
- Loading branch information
thijsvl
committed
Oct 25, 2024
1 parent
9b09149
commit 0c6bb81
Showing
9 changed files
with
62 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
This product includes dgl_abm, software developed by | ||
Meiert W. Grootes. | ||
Netherlands eScience Center. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,13 +22,14 @@ The project setup is documented in [project_setup.md](project_setup.md). Feel fr | |
|
||
## Installation | ||
|
||
To install dgl_abm from GitHub repository, do: | ||
To install dgl_abm from GitHub repository*, do: | ||
|
||
```console | ||
git clone [email protected]:SDCCA/dgl_abm.git | ||
cd dgl_abm | ||
python -m pip install . | ||
``` | ||
\* - the project is currently under development and is not release-ready yet. | ||
|
||
## Documentation | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,12 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
authors = [ | ||
{ name = "Meiert W. Grootes", email = "[email protected]" } | ||
{name = "Meiert W. Grootes", email = "[email protected]"}, | ||
{name = "Debraj Roy"}, | ||
{name = "Fakhereh Sarah Alidoost"}, | ||
{name = "Pranav Chandramouli"}, | ||
{name = "Sonja Georgievska"}, | ||
{name = "Thijs van Lankveld"}, | ||
] | ||
classifiers = [ | ||
"Development Status :: 2 - Pre-Alpha", | ||
|
@@ -18,17 +23,28 @@ classifiers = [ | |
"", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
dependencies = [] | ||
dependencies = [ | ||
"dask", | ||
"dgl", | ||
"numpy", | ||
"pydantic>=2", | ||
"scipy==1.10.1", | ||
"torch==2.1.1", | ||
"torchdata==0.7.1", | ||
"torchvision", | ||
"torchaudio", | ||
"xarray", | ||
"zarr", | ||
] | ||
description = "ABM modelling framework using networks and tensor algebra supported by the DGL library" | ||
keywords = ["ABM"," Tensor"," PyTorch"] | ||
keywords = ["ABM", "Graph", "PyTorch", "Tensor"] | ||
license = {file = "LICENSE"} | ||
name = "dgl_abm" | ||
readme = {file = "README.md", content-type = "text/markdown"} | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.11, <3.12" | ||
version = "0.1.0" | ||
|
||
[project.optional-dependencies] | ||
|
@@ -85,7 +101,7 @@ extras = dev | |
[tool.ruff] | ||
line-length = 120 | ||
output-format = "concise" | ||
extend-exclude = ["docs"] | ||
extend-exclude = ["docs", "build"] | ||
|
||
[tool.ruff.lint] | ||
# Allow unused variables when underscore-prefixed. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
git rev-parse HEAD > version.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
9b09149e38a6ae5c9889e0418d4520fa74b5c551 |