-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (45 loc) · 1.2 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"wheel",
]
[project]
name = 'local_pcangsd'
version = '0.0.2'
authors = [
{name = "Alexis Simon", email = "[email protected]"},
]
description = "Perform local PCA on low-coverage data."
readme = 'README.md'
requires-python = '>=3.6,<3.10'
license = {text = "MIT"}
classifiers = [
'Development Status :: 1 - Planning',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
# Too much of a mess dealing with dependencies, use conda
# dependencies = [
# 'pandas',
# 'dask',
# 'xarray',
# 'sgkit>=0.5',
# 'numpy<1.22',
# 'scipy<1.10',
# 'pcangsd @ git+https://github.com/alxsimon/pcangsd.git',# fork for install
# ]
[project.optional-dependencies]
doc = [
"sphinx>4,<=4.2.0",
"sphinx_autodoc_typehints>=1.14.0",
"sphinx-book-theme",
"pydata-sphinx-theme",
]
[project.scripts]
local_pcangsd = 'lp_cli:main'
[project.urls]
documentation = 'https://alxsimon.github.io/local_pcangsd'
repository = 'https://github.com/alxsim/local_pcangsd'