Skip to content

Commit

Permalink
Merge pull request #380 from joshua-cogliati-inl/pip_package
Browse files Browse the repository at this point in the history
Initial pip package.
  • Loading branch information
dylanjm authored Sep 26, 2024
2 parents 92a9904 + 87fb297 commit b9ac072
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 0 deletions.
1 change: 1 addition & 0 deletions build_cfg/HERON
3 changes: 3 additions & 0 deletions build_cfg/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include HERON/LICENSE
include HERON/NOTICE.txt
include HERON/README.md
8 changes: 8 additions & 0 deletions build_cfg/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
To build this, use the build module in python:


python3 -m ensurepip
python3 -m pip install --upgrade build
python3 -m build

This will create packages in the dist directory.
3 changes: 3 additions & 0 deletions build_cfg/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
37 changes: 37 additions & 0 deletions build_cfg/setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[metadata]
name = heron-ravenframework
version = 0.5rc1
description = HERON plugin for RAVEN framework
long_description = file: HERON/README.md
license_files = HERON/LICENSE HERON/NOTICE.txt
url = https://github.com/idaholab/HERON

[options.entry_points]
console_scripts =
heron = HERON.src.main:main

[options.package_data]
HERON/templates =
*.xml
HERON/src/Hybrid2Heron =
*.csv

[options]
packages =
HERON
HERON/src
HERON/src/dispatch
HERON/src/validators
HERON/src/ValuedParams
HERON/src/Hybrid2Heron
HERON/src/TransferFuncs
HERON/templates
python_requires = >=3.9

install_requires =
raven_framework >=3.1rc1
teal_ravenframework
dill==0.3.5
pyomo==6.4
networkx
pyutilib

0 comments on commit b9ac072

Please sign in to comment.