-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #108 from savitakartik/restructure_as_package
code restructure to enable package install
- Loading branch information
Showing
22 changed files
with
101 additions
and
342 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
[metadata] | ||
name = tsqc | ||
author = Tskit Developers | ||
author_email = [email protected] | ||
license = MIT | ||
description = Visual QC of ARGs | ||
project_urls = | ||
Bug Tracker = https://github.com/tskit-dev/tsqc/issues | ||
Source Code = https://github.com/tskit-dev/tsqc | ||
classifiers: | ||
Intended Audience :: Science/Research | ||
License :: OSI Approved :: MIT License | ||
Programming Language :: Python :: 3 | ||
Topic :: Scientific/Engineering | ||
Topic :: Scientific/Engineering :: Bio-Informatics | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://tskit.dev/tsqc/ | ||
platforms = | ||
POSIX | ||
Windows | ||
MacOS X | ||
keywords = | ||
tree sequence | ||
ancestral recombination graph | ||
tskit | ||
quality control | ||
|
||
[options] | ||
packages = tsqc | ||
python_requires = >=3.8 | ||
install_requires = | ||
click | ||
daiquiri | ||
panel | ||
diskcache | ||
hvplot | ||
xarray | ||
datashader | ||
tskit | ||
seaborn | ||
pytest | ||
tszip | ||
appdirs | ||
setup_requires = | ||
setuptools | ||
|
||
[tool:pytest] | ||
testpaths = | ||
tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from setuptools import setup | ||
|
||
setup( | ||
use_scm_version={"write_to": "tsqc/_version.py"}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.