-
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 #205 from benjeffery/pyproject
Consolidate to pyproject.toml
- Loading branch information
Showing
3 changed files
with
57 additions
and
4 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 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 |
---|---|---|
@@ -1,3 +1,45 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "tsbrowse" | ||
authors = [ | ||
{name = "Tskit Developers", email = "[email protected]"}, | ||
] | ||
description = "Webapp to view and visualise tskit ARGs" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
license = {text = "MIT"} | ||
classifiers = [ | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
] | ||
dependencies = [ | ||
"click", | ||
"daiquiri", | ||
"panel", | ||
"hvplot", | ||
"datashader", | ||
"tskit", | ||
"tszip", | ||
] | ||
dynamic = ["version"] | ||
keywords = ["tree sequence", "ancestral recombination graph", "tskit", "quality control"] | ||
|
||
[project.urls] | ||
"Bug Tracker" = "https://github.com/tskit-dev/tsbrowse/issues" | ||
"Source Code" = "https://github.com/tskit-dev/tsbrowse" | ||
Homepage = "https://tskit.dev/tsbrowse/" | ||
|
||
[tool.setuptools] | ||
packages = ["tsbrowse", "tsbrowse.pages"] | ||
|
||
[tool.setuptools_scm] | ||
write_to = "tsbrowse/_version.py" | ||
|
||
[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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
build | ||
click | ||
coverage | ||
coveralls | ||
|