-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
executable file
·40 lines (36 loc) · 1.12 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
[build-system]
requires = ["poetry-core", "cffi", "cmake", "setuptools;python_version>='3.12'"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pandas-plink"
version = "2.3.1"
description = "Read PLINK files into Pandas data frames"
license = "MIT"
authors = ["Danilo Horta <[email protected]>"]
readme = "README.md"
repository = "https://github.com/limix/pandas-plink"
homepage = "https://github.com/limix/pandas-plink"
keywords = ["plink", "reader", "genetics"]
classifiers = ["License :: OSI Approved :: MIT License"]
include = [
{ path = "pandas_plink/*.c", format = "sdist" },
{ path = "pandas_plink/*.h", format = "sdist" },
{ path = "pandas_plink/*.pyd", format = "wheel" },
{ path = "pandas_plink/*.so", format = "wheel" },
]
[tool.poetry.dependencies]
cffi = "^1.16"
deprecated = "^1.2"
numpy = "^1.0"
pandas = "^2.2"
python = "^3.10"
tqdm = "^4.66"
xarray = "*"
zstandard = "^0.22"
pandera = {version = "*", extras = ["mypy", "dask"]}
dask = {version = "*", extras = ["dataframe"]}
[tool.poetry.group.dev.dependencies]
pytest = "^8.2"
[tool.poetry.build]
generate-setup-file = false
script = "build_ext.py"