-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
~= Change to mixed Rust/Python layout.
- Loading branch information
Showing
14 changed files
with
1,473 additions
and
755 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
# Hello |
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 |
---|---|---|
|
@@ -3,15 +3,36 @@ requires = ["maturin>=1.4,<2.0"] | |
build-backend = "maturin" | ||
|
||
[project] | ||
name = "constellation-networkx" | ||
dependencies = ["networkx==3.2.1"] | ||
name = "cstl_ntwkx" | ||
description = "Encode Walker constellations into networkx graphs suitable for Reinforcement Learning." | ||
readme = "README.rst" | ||
requires-python = ">=3.8" | ||
license = { file = "LICENSE" } | ||
keywords = [ | ||
"walker-star", | ||
"walker-delta", | ||
"walker constellations", | ||
"constellations", | ||
"reinforcement learning", | ||
"constellation to networkx", | ||
"cstl to networkx", | ||
"encode constellations", | ||
] | ||
authors = [{ name = "Robin Ohs", email = "[email protected]" }] | ||
maintainers = [{ name = "Robin Ohs", email = "[email protected]" }] | ||
classifiers = [ | ||
"Programming Language :: Rust", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
] | ||
dependencies = ["networkx==3.2.1"] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
homepage = "https://depend.cs.uni-saarland.de/" | ||
documentation = "https://github.com/robinohs/constellation_networkx" | ||
repository = "https://github.com/robinohs/constellation_networkx" | ||
|
||
[tool.maturin] | ||
features = ["pyo3/extension-module"] | ||
python-source = "python" |
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,5 @@ | ||
from .cstl_ntwkx import * | ||
|
||
__doc__ = cstl_ntwkx.__doc__ | ||
if hasattr(cstl_ntwkx, "__all__"): | ||
__all__ = cstl_ntwkx.__all__ |
File renamed without changes.
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,2 @@ | ||
def test(): | ||
print("TEST bestanden") |
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,2 @@ | ||
def test() -> any: | ||
pass |
Empty file.
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
Oops, something went wrong.