Skip to content

Commit

Permalink
c2
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredgalichon committed Jul 17, 2023
1 parent 372c777 commit 05ec240
Show file tree
Hide file tree
Showing 9 changed files with 59 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: run tests

on: [push]
#
jobs:
build:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9']
steps:
- uses: actions/checkout@v2

- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Upgrade pip
run: |
pip install --upgrade pip
pip install --upgrade build
- name: run tests
run: python setup.py test
8 changes: 8 additions & 0 deletions math_econ_code.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Metadata-Version: 2.1
Name: math-econ-code
Version: 0.0.1
Summary: description of the package
Home-page:
Author-email: [email protected]
License: GNU
Requires-Python: >= 3
8 changes: 8 additions & 0 deletions math_econ_code.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
setup.py
math_econ_code.egg-info/PKG-INFO
math_econ_code.egg-info/SOURCES.txt
math_econ_code.egg-info/dependency_links.txt
math_econ_code.egg-info/top_level.txt
mec/__init__.py
mec/lp.py
mec/tests/__init__.py
1 change: 1 addition & 0 deletions math_econ_code.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions math_econ_code.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mec
Binary file added mec/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Empty file added mec/tests/__init__.py
Empty file.
Binary file added mec/tests/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from setuptools import setup, find_packages

setup(
name="math_econ_code",
version="0.0.1",
url="",
authors=["Alfred Galichon"],
author_email="[email protected]",
licence="GNU",
python_requires=">= 3",
packages=find_packages(),
test_suite="mec.tests",
description="description of the package" # can link markdown file here
)

0 comments on commit 05ec240

Please sign in to comment.