Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see CONTRIBUTORS.md)
# SPDX-License-Identifier: Apache-2.0
# SCM syntax highlighting & preventing 3-way merges
pixi.lock merge=binary linguist-language=YAML linguist-generated=true
3 changes: 1 addition & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
#
# This source file is part of the Daneshjou Lab projects
#
# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see CONTRIBUTORS.md)
#
# SPDX-License-Identifier: Apache
# SPDX-License-Identifier: Apache-2.0
#

name: Build and Test
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
#
# This source file is part of the Daneshjou Lab projects
#
# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see CONTRIBUTORS.md)
#
# SPDX-License-Identifier: Apache
# SPDX-License-Identifier: Apache-2.0
#

name: Pull Request
Expand Down
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,19 @@
# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see CONTRIBUTORS.md)
# SPDX-License-Identifier: Apache-2.0

.vscode

# pixi environments
.pixi
*.egg-info

# python
__pycache__
*.pyc
*.pyo
*.pyd
*.pyw

# environments
.pyenv
.env
4 changes: 2 additions & 2 deletions .reuse/dep5.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/

Files: DataSet/**
Copyright: 2025 Stanford University and the project authors (see CONTRIBUTORS.md)
License: Apache
License: Apache-2.0
Comment: All files are part of the Daneshjou Lab projects.

Files: Config/**
Copyright: 2025 Stanford University and the project authors (see CONTRIBUTORS.md)
License: Apache
License: Apache-2.0
Comment: All files are part of the Daneshjou Lab projects.
16 changes: 16 additions & 0 deletions .yamllint
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see CONTRIBUTORS.md)
# SPDX-License-Identifier: Apache-2.0
---
extends: default

rules:
truthy:
level: warning
allowed-values: ["false", "true", "on", "off"]
document-start:
level: warning
line-length:
max: 180
level: warning
document-start:
present: false
File renamed without changes.
3 changes: 3 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
<!-- SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see CONTRIBUTORS.md) -->
<!-- SPDX-License-Identifier: Apache-2.0 -->

![Build and Test](https://github.com/DaneshjouLab/AutoGKB/actions/workflows/build-and-test.yml/badge.svg)


Expand Down
16 changes: 16 additions & 0 deletions pixi.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see CONTRIBUTORS.md)
# SPDX-License-Identifier: Apache-2.0

[project]
authors = [
"Aaron Fanous <aron7628@stanford.edu>",
"Shlok Natarajan <shlok.natarajan@gmail.com>"
]
channels = ["conda-forge"]
name = "AutoGKB"
platforms = ["osx-arm64"]
version = "0.1.0"

[tasks]

[dependencies]
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# SPDX-FileCopyrightText: 22025 Stanford University and the project authors (see CONTRIBUTORS.md)
# SPDX-License-Identifier: Apache-2.0
3 changes: 3 additions & 0 deletions src/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see CONTRIBUTORS.md)
#
# SPDX-License-Identifier: Apache-2.0
Loading