-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (36 loc) · 978 Bytes
/
pyproject.toml
File metadata and controls
45 lines (36 loc) · 978 Bytes
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
[build-system]
requires = ["setuptools>=80", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "mimick"
version = "0.0.0"
authors = [
{name = "Pavel Dimens"},
{name = "David Bolognini"}
]
description = "Simulate linked-read data"
requires-python = ">=3.10"
readme = {file = "README.md", content-type = "text/markdown"}
license = "GPL-3.0-or-later"
dependencies = [
'rich-click>=1.9.3'
]
[tool.setuptools.packages.find]
where = ["."]
exclude = ["test"]
[project.scripts]
mimick = "mimick.__main__:mimick"
install_mimick = "mimick.__main__:mimick_install"
test_mimick = "mimick.__main__:mimick_test"
[project.urls]
Homepage = "https://github.com/pdimens/mimick"
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
mimick = { path = ".", editable = true }
[tool.pixi.tasks]
build = "install_mimick"
[tool.pixi.dependencies]
rich-click = ">=1.9.4,<2"
juliaup = ">=1.19.9,<2"