-
Notifications
You must be signed in to change notification settings - Fork 3
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 #27 from arogozhnikov/dev
Update github workflows and move to pyproject.toml
- Loading branch information
Showing
7 changed files
with
88 additions
and
42 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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,73 @@ | ||
[build-system] | ||
requires = ["hatchling>=1.21.0"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "demuxalot" | ||
|
||
description = "Scalable and reliable demulitplexing for single-cell RNA sequencing." | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
|
||
keywords = [ | ||
"genotype learning", | ||
"single cell RNA sequencing", | ||
"demultiplexing", | ||
"bayesian modelling", | ||
] | ||
|
||
license = { text = "MIT" } | ||
|
||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
] | ||
|
||
dependencies = [ | ||
"pysam", # reads BAM files (alignment) | ||
"scipy", | ||
"numpy", | ||
"joblib", # multiprocessing in separate processes | ||
"pandas", | ||
"pyarrow", # required to read and write parquet files | ||
] | ||
dynamic = ["version"] | ||
authors = [{ name = "Alex Rogozhnikov, System1 Biosciences" }] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/arogozhnikov/demuxalot" | ||
|
||
[tool.setuptools] | ||
packages = ["demuxalot"] | ||
|
||
[tool.hatch.version] | ||
path = "demuxalot/__init__.py" | ||
|
||
[tool.hatch.build.targets.sdist] | ||
exclude = [ | ||
"/.github", | ||
"/.idea", | ||
"/.pytest_cache", | ||
"/build", | ||
"/dist", | ||
"/tests", | ||
"/examples", | ||
] | ||
|
||
[tool.hatch.build.targets.wheel] | ||
# should use packages from main section | ||
|
||
|
||
[tool.hatch.envs.pypi.scripts] | ||
# hatch run pypi:deploy_test | ||
deploy_test = "hatch build --clean && hatch publish -r test" | ||
deploy = "hatch build --clean && hatch publish" | ||
|
||
|
||
[tool.hatch.envs.testing.scripts] | ||
# hatch run testing:test | ||
test = "pytest tests" | ||
|
||
|
||
[tool.ruff] | ||
line-length = 120 |