Skip to content

Commit

Permalink
Added anaconda-project and started updating the Kerbal Model notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
sanbales committed Mar 6, 2021
1 parent 1eda10a commit 76992ca
Show file tree
Hide file tree
Showing 4 changed files with 850 additions and 2,577 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,6 @@ dmypy.json

# Pyre type checker
.pyre/

# Anaconda Project
envs/
14 changes: 14 additions & 0 deletions .projectignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# project-local contains your personal configuration choices and state
/anaconda-project-local.yml

# Files autocreated by Python
__pycache__/
*.pyc
*.pyo
*.pyd

# Notebook stuff
.ipynb_checkpoints/

# Spyder stuff
/.spyderproject
107 changes: 107 additions & 0 deletions anaconda-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
# This is an Anaconda project file.
#
# Here you can describe your project and how to run it.
# Use `anaconda-project run` to run the project.
# The file is in YAML format, please see http://www.yaml.org/start.html for more.
#

#
# Set the 'name' key to name your project
#
name: sysmlv2-semantics

#
# Set the 'icon' key to give your project an icon
#
icon:

#
# Set a one-sentence-or-so 'description' key with project details
#
description:

#
# In the commands section, list your runnable scripts, notebooks, and other code.
# Use `anaconda-project add-command` to add commands.
#
commands:
lab:
description: launch lab
unix: &lab jupyter lab --no-browser --debug
windows: *lab
env_spec: user
notebooks/KerML Nested Features.ipynb:
notebook: notebooks/KerML Nested Features.ipynb
env_spec: user
notebooks/Kerbal Model.ipynb:
notebook: notebooks/Kerbal Model.ipynb
env_spec: user

#
# In the variables section, list any environment variables your code depends on.
# Use `anaconda-project add-variable` to add variables.
#
variables: {}

#
# In the services section, list any services that should be
# available before your code runs.
# Use `anaconda-project add-service` to add services.
#
services: {}

#
# In the downloads section, list any URLs to download to local files
# before your code runs.
# Use `anaconda-project add-download` to add downloads.
#
downloads: {}

#
# In the packages section, list any packages that must be installed
# before your code runs.
# Use `anaconda-project add-packages` to add packages.
#
packages: []

#
# In the channels section, list any Conda channel URLs to be searched
# for packages.
#
# For example,
#
# channels:
# - mychannel
#
channels:
- conda-forge
- nodefaults

#
# In the platforms section, list platforms the project should work on
# Examples: "linux-64", "osx-64", "win-64"
# Use `anaconda-project add-platforms` to add platforms.
#
platforms:
- linux-64
- osx-64
- win-64

#
# You can define multiple, named environment specs.
# Each inherits any global packages or channels,
# but can have its own unique ones also.
# Use `anaconda-project add-env-spec` to add environment specs.
#
env_specs:
user:
description: The environment for running the notebooks
packages:
- jupyterlab
- ipyelk >=0.3
- matplotlib
- networkx
- notebook
- numpy
- pip
- wheel
Loading

0 comments on commit 76992ca

Please sign in to comment.