Skip to content

Commit

Permalink
adding cupy to requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
brennanfreeze committed Aug 11, 2024
1 parent 2e30865 commit ddb8588
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/runtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
with:
python-version: '3.11'

- name: Clean up previous builds
run: |
find . -name "*.egg-info" -type d -exec rm -rf {} +
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -33,4 +37,4 @@ jobs:
env:
PYTHONPATH: ./src
run: |
pytest
pytest
23 changes: 23 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
from setuptools import setup, find_packages

setup(
name='qcpy',
version='0.1.0',
package_dir={'': 'src'},
packages=find_packages(where='src'),
install_requires=[
'contourpy>=1.2.1',
'cycler>=0.12.1',
'fonttools>=4.51.0',
'kiwisolver>=1.4.5',
'matplotlib>=3.8.4',
'numpy>=1.26.4',
'packaging>=24.0',
'pillow>=10.3.0',
'pyparsing>=3.1.2',
'python-dateutil>=2.9.0.post0',
'scipy>=1.13.0',
'six>=1.16.0',
'cupy-cuda12x>=13.0.0',
],
)

0 comments on commit ddb8588

Please sign in to comment.