-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added anaconda-project and started updating the Kerbal Model notebook
- Loading branch information
Showing
4 changed files
with
850 additions
and
2,577 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 |
---|---|---|
|
@@ -127,3 +127,6 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
# Anaconda Project | ||
envs/ |
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,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 |
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,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 |
Oops, something went wrong.