Skip to content

Commit

Permalink
Merge pull request #40 from sajith/29.pip-install-troubles
Browse files Browse the repository at this point in the history
Test that `pip install -e .` works
  • Loading branch information
sajith authored Sep 1, 2022
2 parents 656e572 + 604a662 commit 3a83c58
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- ubuntu-latest

strategy:
fail-fast: false
matrix:
python-version:
- "3.7"
Expand Down Expand Up @@ -68,3 +69,7 @@ jobs:
- name: Run tests
run: |
pytest
- name: Try installing the sources
run: |
pip install -e .
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ venv*
*.egg-info/
*.egg
.pc
build/
dist/
*.whl

# Ignore files generated by coverage tools.
/.coverage
Expand Down
12 changes: 8 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,20 @@ classifiers =
include_package_data = True
package_dir =
= sdxdatamodel
packages = find:
#packages =setuptools.find_packages(where='./datamodel'),
install_requires =
python-dateutil~=2.8
python_requires = >=3.6
tests_require =
pytest-cov

[options]
packages = find:

[options.packages.find]
exclude =
docs
test*
where = sdxdatamodel
doc
tests
schemas
htmlcov
include = sdxdatamodel

0 comments on commit 3a83c58

Please sign in to comment.