forked from belowlab/ldsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (64 loc) · 2.11 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "ldsc"
version = "3.0.0"
description = "`ldsc` is a command line tool for estimating heritability and genetic correlation from GWAS summary statistics. `ldsc` also computes LD Scores."
dependencies = [
"bitarray==2.6.0",
"nose==1.3.7",
"numpy==1.23.3",
"pandas==1.5.0",
"pysam==0.19.1",
"python-dateutil==2.8.2",
"pytz==2022.4",
"scipy==1.9.2",
"six==1.16.0",
"log @ git+https://github.com/jtb324/log.git",
"rich-argparse>=1.5.2",
"xopen>=2.0.2",
"pybedtools==0.9.1",
]
requires-python = ">=3.9"
readme = "README.md"
authors = [
{name = "Brendan Bulik-Sullivan"},
{name = "Hilary Finucane"},
{name = "James Baker", email = "[email protected]"},
]
keywords = ["python", "genetics", "genetic correlation", "heritability"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://github.com/belowlab/ldsc"
Repository = "https://github.com/belowlab/ldsc"
Changelog = "https://github.com/belowlab/ldsc/blob/master/CHANGELOG"
[project.license]
text = "GPL-3.0-or-later"
[project.scripts]
ldsc = "ldsc.main:main"
[project.optional-dependencies]
dev = [
"black>=24.8.0",
"isort>=5.13.2",
"nox>=2024.4.15",
"scalene>=1.5.19",
]
[tool.pdm]
distribution = true
[tool.pdm.scripts]
# If you are going to run the pdm test command, first run pdm simulate to generate the data needed for the tests
simulate = "python3 simulate.py"
test = "python3 -m unittest discover -s tests/ -p *.py"
clean = {shell = "rm tests/simulate_test/*.cov && rm tests/simulate_test/*.delete && rm tests/simulate_test/*.part_delete && rm tests/*.h2_results && rm tests/simulate_test/*h2_results && rm tests/simulate_test/*rg_results && rm tests/simulate_test/ldscore/* && rm tests/simulate_test/sumstats/*"}
[tool.pdm.build]
package-dir = "src"
[build-system]
requires = [
"pdm-backend",
]
build-backend = "pdm.backend"