-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (34 loc) · 962 Bytes
/
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
[project]
name = "anansnake"
description = "Automated ANANSE analysis with seq2science & snakemake!"
authors = [
{name = "Siebren Frölich", email = "[email protected]"},
]
maintainers = [
{name = "Siebren Frölich", email = "[email protected]"},
]
requires-python = ">=3.8"
dependencies = [
"seq2science ==1.2.0",
]
dynamic = ["version"]
readme = "README.md"
license = {file = "LICENSE"}
keywords = [
"GRN",
"gene regulatory network",
"molecular developmental biology",
"ANANSE",
"Seq2Science",
]
[project.urls]
Homepage = "https://github.com/vanheeringen-lab/anansnake"
News = "https://github.com/vanheeringen-lab/anansnake/blob/master/CHANGELOG.md"
Readme = "https://github.com/vanheeringen-lab/anansnake/blob/master/README.md"
[project.scripts]
anansnake = "anansnake.scripts.cli:cli"
[build-system]
requires = ["hatchling>=1.5.0"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "anansnake/__init__.py"