-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca56b72
commit 7891947
Showing
6 changed files
with
46 additions
and
62 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,37 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools] | ||
packages = ["tensorqtl"] | ||
|
||
[project] | ||
name = "tensorqtl" | ||
version = "1.0.10" | ||
dependencies = [ | ||
"numpy", | ||
"pandas", | ||
"Pgenlib>=0.90.1", | ||
"qtl", | ||
"scipy", | ||
"torch", | ||
] | ||
authors = [ | ||
{name = "Francois Aguet", email = "[email protected]"} | ||
] | ||
maintainers = [ | ||
{name = "Francois Aguet", email = "[email protected]"} | ||
] | ||
description = "GPU-accelerated QTL mapper" | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
keywords = ["Quantitative trait loci"] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Programming Language :: Python :: 3", | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
] | ||
|
||
[project.urls] | ||
Repository = "https://github.com/broadinstitute/tensorqtl.git" |
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,2 +1,4 @@ | ||
__version__ = "1.0.10" | ||
import importlib.metadata | ||
from .tensorqtl import * | ||
|
||
__version__ = importlib.metadata.version(__name__) |
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