forked from JoanaMPereira/GCsnap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.07 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
[project]
name = "gcsnap"
version = "1.0.17"
description = "GCsnap: Interactive snapshots for the comparison of protein-coding genomic contexts"
authors = [
{name = "Joana Pereira", email = "[email protected]"},
]
dependencies = [
"urllib3 == 1.26.14",
"pandas == 1.4.4",
"biopython",
"bokeh == 1.3.4",
"matplotlib",
"networkx==2.8.8",
"numpy == 1.20",
"pacmap",
"requests_cache",
"scikit-learn",
"jinja2==3.0",
"numba==0.56.4"
]
requires-python = "<3.9"
readme = "README.md"
license = {text = "MIT"}
keywords = ["genomic contexts homology"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[project.urls]
Homepage = "https://github.com/JoanaMPereira/GCsnap"
[project.scripts]
GCsnap = "gcsnap.GCsnap:main"
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["gcsnap"]