Skip to content

Commit

Permalink
convert to pyproject.toml; add first stab at CI
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-petersen committed Sep 18, 2024
1 parent 37e7837 commit 39bafbc
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 53 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/continuousintegration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Continuous Integration

on:
- push
- pull_request

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r test_requirements.txt
# - name: Test with pytest
# run: |
# coverage run -m pytest -v -s
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2016, Michael Petersen
Copyright (c) 2016-2024, Michael Petersen
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
3 changes: 0 additions & 3 deletions MANIFEST.in

This file was deleted.

15 changes: 15 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "exptool"
version = "0.4.0"
description = "exp analysis in Python"
authors = [{ name = "Michael Petersen", email = "[email protected]" }]
license = { text = "New BSD" }
dependencies = [
"numpy>=1.7",
"scipy",
"matplotlib",
]
49 changes: 0 additions & 49 deletions setup.py

This file was deleted.

3 changes: 3 additions & 0 deletions test_requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
numpy==1.26.4
scipy==1.11.4
-e .

0 comments on commit 39bafbc

Please sign in to comment.