-
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.
- Loading branch information
1 parent
980fcbc
commit a0cf8e7
Showing
6 changed files
with
9 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,5 +29,7 @@ nanobind_test.egg-info | |
_skbuild | ||
/dist | ||
__pycache__ | ||
.cache | ||
*.pyd | ||
*.egg-info | ||
pyenv |
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 |
---|---|---|
|
@@ -3,13 +3,15 @@ requires = ["scikit-build-core >=0.4.3", "nanobind >=1.3.2"] | |
build-backend = "scikit_build_core.build" | ||
|
||
[project] | ||
name = "demeter" | ||
name = "demeterpy" | ||
version = "0.0.1" | ||
description = "A modern deterministic neutron transport solver for reactor simulations" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
authors = [{ name = "Kenneth Assogba", email = "[email protected]" }] | ||
classifiers = ["License :: OSI Approved :: AGPL-3.0 license"] | ||
classifiers = ["License :: AGPL-3.0 license"] | ||
# Optional: runtime dependency specification | ||
# dependencies = [ "numpy", "matplotlib" ] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/kennethassogba/Demeter" | ||
|
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from ._demeter import Material, __doc__ |
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,4 +1,4 @@ | ||
from demeter import * | ||
from demeterpy import * | ||
import numpy as np | ||
import matplotlib.pyplot as plt | ||
|
||
|