Skip to content

Commit 07c947d

Browse files
committed
setup.cfg
1 parent 3ef2db7 commit 07c947d

16 files changed

Lines changed: 26 additions & 24 deletions

File tree

.github/workflows/dca_tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
run-tests:
1111
runs-on: ubuntu-latest
1212
strategy:
13+
fail-fast: false
1314
matrix:
1415
python-version: ["3.7", "3.8", "3.9"]
1516
steps:
@@ -22,7 +23,7 @@ jobs:
2223
- name: Install dependencies
2324
run: |
2425
python -m pip install --upgrade pip
25-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
26+
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
2627
python -m pip install flake8 codecov pytest-cov sphinx_rtd_theme
2728
- name: Install DCA
2829
run: |

setup.cfg

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[metadata]
2+
name = dca
3+
version = 1.0.0
4+
author = Jesse Livezey
5+
author_email = jesse.livezey@gmail.com
6+
description = Dynamical Components Analysis
7+
long_description = file: README.md
8+
long_description_content_type = text/markdown
9+
url = https://github.com/BouchardLab/DynamicalComponentsAnalysis
10+
project_urls =
11+
Bug Tracker = https://github.com/JesseLivezey/easy_glm/issues
12+
classifiers =
13+
Programming Language :: Python :: 3
14+
License :: OSI Approved :: BSD-3-Clause-LBNL
15+
Operating System :: OS Independent
16+
17+
[options]
18+
package_dir =
19+
= src
20+
packages = find:
21+
python_requires = >=3.6
22+
23+
[options.packages.find]
24+
where = src

setup.py

Lines changed: 0 additions & 23 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)