-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (30 loc) · 1.19 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "SyntenyQC"
version = "1.1"
requires-python = ">= 3.10"
dependencies = [
"plotly>=5.16",
"biopython<1.84",
"networkx>=3.1",
"pandas>=1.5"
]
authors = [{name = "Timothy Kirkwood", email = "[email protected]"}]
maintainers = [{name = "Timothy Kirkwood", email = "[email protected]"}]
description = "A command line app for the pre-processing and quality control of synteny plot neighbourhoods"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["bgc", "biosynthetic gene cluster", "synteny", "synteny plot", "genome neighbourhood", "neighbourhood"]
classifiers = ["Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics"]
[project.urls]
Homepage = "https://github.com/Tim-Kirkwood/SyntenyQC"
Issues = 'https://github.com/Tim-Kirkwood/SyntenyQC/issues'
[project.scripts]
SyntenyQC = "SyntenyQC.app:main_cli"