-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move from setup.py to pyproject.toml (#240)
- Loading branch information
Showing
8 changed files
with
57 additions
and
86 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
include README.rst | ||
include LICENSE | ||
include requirements.txt | ||
include requirements-rtd.txt | ||
include requirements-rtd.txt | ||
include requirements-dev.txt | ||
include cellbender/VERSION.txt | ||
include cellbender/remove_background/report.ipynb |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
0.3.0 |
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 +1,3 @@ | ||
__version__ = '0.3.0' | ||
from .base_cli import get_version | ||
|
||
__version__ = get_version() |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.2"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "cellbender" | ||
authors = [{name = "Stephen Fleming"}, {name = "Mehrtash Babadi"}] | ||
license = {text = "BSD (3-Clause)"} | ||
description = "A software package for eliminating technical artifacts from high-throughput single-cell RNA sequencing (scRNA-seq) data" | ||
keywords = ["scRNA-seq", "bioinformatics"] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python :: 3.7", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
] | ||
dynamic = ["version", "dependencies", "optional-dependencies"] | ||
|
||
[project.readme] | ||
file = "README.rst" | ||
content-type = "text/x-rst" | ||
|
||
[project.urls] | ||
Homepage = "http://github.com/broadinstitute/CellBender" | ||
Documentation = "http://cellbender.readthedocs.io" | ||
|
||
[project.scripts] | ||
cellbender = "cellbender.base_cli:main" | ||
|
||
[tool.setuptools] | ||
zip-safe = false | ||
include-package-data = true | ||
|
||
[tool.setuptools.packages] | ||
find = {namespaces = false} | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "cellbender.__version__"} | ||
dependencies = {file = ["requirements.txt"]} | ||
optional-dependencies.dev = {file = ["requirements-dev.txt"]} | ||
optional-dependencies.docs = {file = ["requirements-rtd.txt"]} | ||
|
||
[tool.setuptools.package-data] | ||
"*" = ["cellbender.remove_background.report.ipynb", "cellbender.VERSION.txt"] |
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,2 @@ | ||
pytest | ||
scikit-learn |