Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integrate Cb fix #91

Closed
wants to merge 19 commits into from
Closed
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
10 changes: 10 additions & 0 deletions .github/workflows/python-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,13 @@ jobs:
run: |
pip install wheel
python setup.py bdist_wheel
- name: Build source distribution
run: |
python setup.py sdist
- name: Upload wheel and source distribution
uses: actions/upload-artifact@v3
with:
name: python-package-${{ matrix.python-version }}
path: |
dist/*.whl
dist/*.tar.gz
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ requires = ["setuptools", "wheel", "Cython"]
build-backend = "setuptools.build_meta"

[project]
name = "Aposteriori"
version = "2.1.2"
name = "aposteriori"
version = "2.2.0"
requires-python = ">= 3.8"
readme = "README.md"
dependencies = [
Expand All @@ -14,3 +14,6 @@ dependencies = [
"numpy",
"flake8"
]

[project.scripts]
make-frame-dataset = "aposteriori.data_prep.cli:cli"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="aposteriori",
version="2.1.2",
version="2.2.0",
author="Wells Wood Research Group",
author_email="[email protected]",
description="A library for the voxelization of protein structures for protein design.",
Expand Down
Loading
Loading