Skip to content

Commit

Permalink
removed numpy build dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-youngblut committed Jan 6, 2024
1 parent 33d3f38 commit 8eadbbd
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install pypa/build
run: python -m pip install build --user
- name: Build package
run: python -m build
- name: Publish package
Expand Down
3 changes: 0 additions & 3 deletions pyproject.toml

This file was deleted.

5 changes: 0 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
import glob
import numpy


## install main application
desc = 'Metagenome simulation of multiple synthetic communities'
Expand All @@ -19,7 +15,6 @@
'MGSIM = MGSIM.__main__:main'
]
},
include_dirs = [numpy.get_include()],
license = "MIT license",
packages = find_packages(),
package_dir={'MGSIM':
Expand Down

0 comments on commit 8eadbbd

Please sign in to comment.