-
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.
Merge pull request #30 from fusion-energy/develop
Patch release 0.2.3
- Loading branch information
Showing
13 changed files
with
127 additions
and
123 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,3 +66,6 @@ manifest_processed/ | |
# conda buid and dist dir | ||
build/ | ||
dist/ | ||
|
||
# python package version number | ||
_version.py |
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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools >= 45", | ||
"wheel", | ||
"setuptools_scm[toml] >= 6.2", | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
write_to = "regular_mesh_plotter/_version.py" |
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
[metadata] | ||
name = regular_mesh_plotter | ||
author = The Fusion Energy Development Team | ||
author_email = mail@jshimwell.com | ||
description = A Python package for creating publication quality plots of regular mesh tallies with the underlying geometry | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://github.com/fusion-energy/regular_mesh_plotter | ||
license = MIT | ||
license_file = LICENSE.txt | ||
classifiers = | ||
Natural Language :: English | ||
Topic :: Scientific/Engineering | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
project_urls = | ||
Source = https://github.com/fusion-energy/regular_mesh_plotter | ||
Tracker = https://github.com/fusion-energy/regular_mesh_plotter/issues | ||
|
||
[options] | ||
packages = find: | ||
python_requires= >=3.6 | ||
install_requires= | ||
numpy >= 1.21.1 | ||
matplotlib >= 3.4.2 | ||
trimesh | ||
shapely | ||
scipy | ||
pandas | ||
dagmc_geometry_slice_plotter | ||
openmc_tally_unit_converter | ||
setuptools_scm | ||
|
||
[options.extras_require] | ||
tests = | ||
pytest >= 5.4.3 | ||
pytest-cov>=2.12.1 | ||
openmc-dagmc-wrapper | ||
openmc_plasma_source | ||
stl_to_h5m | ||
|
||
[flake8] | ||
per-file-ignores = __init__.py:F401 |
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,45 +1,4 @@ | ||
import setuptools | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="regular_mesh_plotter", | ||
version="develop", | ||
author="The Regular Mesh Plotter Development Team", | ||
author_email="mail@jshimwell.com", | ||
description="A Python package for creating publication quality plots of regular mesh tallies with the underlying geometry", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/fusion-energy/regular_mesh_plotter", | ||
packages=setuptools.find_packages(), | ||
classifiers=[ | ||
"Natural Language :: English", | ||
"Topic :: Scientific/Engineering", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires=">=3.6", | ||
package_data={ | ||
"regular_mesh_plotter": [ | ||
# "requirements.txt", | ||
"README.md", | ||
"LICENSE", | ||
] | ||
}, | ||
install_requires=[ | ||
"numpy>=1.21.1", | ||
"matplotlib>=3.4.2", | ||
"trimesh", | ||
"shapely", | ||
"scipy", | ||
"pandas", | ||
"dagmc_geometry_slice_plotter", | ||
"openmc_tally_unit_converter", | ||
], | ||
) | ||
if __name__ == "__main__": | ||
setuptools.setup() |
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.