Skip to content

Commit

Permalink
adding pyproject to mechanistic_azure and moving shiny apps in here (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
arik-shurygin authored Oct 29, 2024
1 parent d2fb41f commit b73a87a
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/mechanistic_azure/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# keep imports relative to avoid circular importing
from . import azure_utilities, experiment_setup
from .abstract_azure_runner import AbstractAzureRunner
from .azure_utilities import AzureExperimentLauncher

# Defines all the different modules able to be imported
__all__ = [
AbstractAzureRunner,
experiment_setup,
azure_utilities,
AzureExperimentLauncher,
]
31 changes: 31 additions & 0 deletions src/mechanistic_azure/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
[tool.poetry]
name = "scenarios-azure-acceleration"
version = "0.1.0"
description = "CFA Azure Acceleration library for creating, launching, and visualizing Azure experiments"
authors = ["Your Name <you@example.com>"]
license = "Apache License, Version 2.0, January 2004"

[tool.poetry.dependencies]
python = "^3.10"
diffrax = "0.5.0"
jax = "<=0.4.26"
jaxlib = "<=0.4.26"
matplotlib = ">=3.7.2"
numpy = ">=1.25.2"
numpyro = ">=0.13.2"
pandas = ">=2.0.3"
seaborn = ">=0.13.2"
shiny = ">=0.6.0"
pytest = ">=7.4.0"
pip = "^24.0"
epiweeks = "^2.3.0"
pre-commit = "^3.7.1"
mypy = "^1.10.0"
requests = "^2.32.3"
docker = "^7.1.0"
cfa-azure = {git = "https://github.com/CDCgov/cfa_azure.git", rev="5443bde"}


[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit b73a87a

Please sign in to comment.