Skip to content

Commit

Permalink
new commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Herb committed Jul 25, 2024
1 parent 5bb2928 commit 37cd78f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Coverage with Coveralls
name: Coverage with coveralls

on: [push, pull_request]

Expand All @@ -15,14 +15,6 @@ jobs:
with:
python-version: '3.9'

- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
5 changes: 4 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ pandas==2.1.4
qutip==4.7.5
scipy==1.11.4
pyyaml==6.0.1
pytest==7.4.0
seaborn==0.12.2
tqdm==4.66.4
customtkinter==5.2.2
pytest
pylint
coverage
coveralls
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/dehe1011/QuantumDNA",
license='BSD-3-Clause',
packages=['none'],
packages=find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=required,
)

0 comments on commit 37cd78f

Please sign in to comment.