Skip to content

Commit

Permalink
Merge pull request #109 from savitakartik/pkg_distribution_and_jupyter
Browse files Browse the repository at this point in the history
setup file changes
  • Loading branch information
jeromekelleher authored Jan 22, 2024
2 parents 45f52b2 + ee0f40f commit 45ff8bb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
7 changes: 2 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,20 @@ keywords =
quality control

[options]
packages = tsqc
packages = tsqc, tsqc.pages
python_requires = >=3.8
install_requires =
click
daiquiri
panel
diskcache
hvplot
xarray
datashader
tskit
seaborn
pytest
tszip
appdirs
setup_requires =
setuptools
setuptools_scm

[tool:pytest]
testpaths =
Expand Down
7 changes: 7 additions & 0 deletions tsqc/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
__version__ = "undefined"
try:
from . import _version

__version__ = _version.version
except ImportError:
pass

0 comments on commit 45ff8bb

Please sign in to comment.