|
a |
|
b/pyproject.toml |
|
|
1 |
[build-system] |
|
|
2 |
requires = ["hatchling"] |
|
|
3 |
build-backend = "hatchling.build" |
|
|
4 |
|
|
|
5 |
[project] |
|
|
6 |
name = "MODAS" |
|
|
7 |
version = "2.1.5" |
|
|
8 |
description = "MODAS: Multi-omics data association study" |
|
|
9 |
keywords = ["multi-omics", "GWAS", "Mendelian randomization", "contrastive PCA"] |
|
|
10 |
requires-python = ">=3.8" |
|
|
11 |
readme = "README.md" |
|
|
12 |
license = {file = "LICENSE"} |
|
|
13 |
authors = [ |
|
|
14 |
{name = "syliu", email = "songyu__liu@163.com" }, |
|
|
15 |
{name = "CrazyHsu", email = "crazyhsu9527@gmail.com" }, |
|
|
16 |
|
|
|
17 |
] |
|
|
18 |
maintainers = [ |
|
|
19 |
{name = "syliu", email = "songyu__liu@163.com"} |
|
|
20 |
] |
|
|
21 |
classifiers = [ |
|
|
22 |
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", |
|
|
23 |
"Programming Language :: Python :: 3", |
|
|
24 |
"Programming Language :: Python :: 3.8" |
|
|
25 |
] |
|
|
26 |
dependencies = [ |
|
|
27 |
"cython", |
|
|
28 |
"yattag==1.14.0", |
|
|
29 |
"matplotlib", |
|
|
30 |
"numpy", |
|
|
31 |
"pandas", |
|
|
32 |
"scipy", |
|
|
33 |
"scikit-learn", |
|
|
34 |
"rpy2", |
|
|
35 |
"pandas_plink", |
|
|
36 |
"pyranges", |
|
|
37 |
"bioframe", |
|
|
38 |
"image_match3", |
|
|
39 |
"statsmodels" |
|
|
40 |
] |
|
|
41 |
|
|
|
42 |
[project.urls] |
|
|
43 |
Documentation = "https://modas-bio.github.io/" |
|
|
44 |
Repository = "https://github.com/liusy-jz/MODAS.git" |
|
|
45 |
|
|
|
46 |
[project.scripts] |
|
|
47 |
MODAS = "modas.MODAS:main" |