Skip to content

Commit

Permalink
fix for pypi upload (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
jychoi-hpc authored Nov 17, 2023
1 parent a86efac commit 7f2c874
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ There are two main options for running the code; both require a JSON input file
for configurable options.
1. Training a model, including continuing from a previously trained model using
configuration options:
```
import hydragnn
hydragnn.run_training("examples/configuration.json")
```
```
import hydragnn
hydragnn.run_training("examples/configuration.json")
```
2. Making predictions from a previously trained model:
```
import hydragnn
hydragnn.run_prediction("examples/configuration.json", model)
```
```
import hydragnn
hydragnn.run_prediction("examples/configuration.json", model)
```

### Datasets

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,14 @@ def read(fname):

setup(
name="HydraGNN",
version="1.0",
version="3.0-rc1",
package_dir={"hydragnn": "hydragnn"},
packages=find_packages(),
install_requires=install_requires,
extras_require={"test": test_requires},
description="Distributed PyTorch implementation of multi-headed graph convolutional neural networks",
license="BSD-3",
long_description_content_type="text/markdown",
long_description=read("README.md"),
url="https://github.com/ORNL/HydraGNN",
author="Massimiliano Lupo Pasini, Samuel Temple Reeve, Pei Zhang, Jong Youl Choi",
Expand Down

0 comments on commit 7f2c874

Please sign in to comment.